Announcements for Payroll and OTL can now be found in the Announcements - Payroll and OTL - EBS (MOSC) subcategory. Follow to be sure you don't miss a thing!
PAY: Dimension Balances for YTD FYTD MTD etc
Hi AllI have this script below for pulling balances from the payroll. However i am unable to locate balance values for dimensions such as FYTD MTD YTD etc. Is there a process that needs to be ran to populate dimensions values for these?
select bal.balance_value,ass.assignment_number, typ.balance_name,dim.dimension_name
from pay_run_balances bal,
per_all_assignments_f ass,
pay_defined_balances def,
pay_balance_types typ,
pay_balance_dimensions dim
where ass.assignment_id = bal.assignment_id
and def.defined_balance_id = bal.defined_balance_id
and def.balance_type_id = typ.balance_type_id
0