Posts

Showing posts from October, 2019

SQL to get Payroll Balances in Oracle Fusion HCM

SELECT DISTINCT     papf.person_number,     pni.national_identifier_number,     prb.balance_value,     ppa.effective_date,     pbtv.balance_name,     pbd.base_dimension_name FROM     per_all_people_f           papf,     per_national_identifiers   pni,     per_periods_of_service     ppos,     per_all_assignments_f      paaf,     pay_payroll_assignments    ppasg,     pay_pay_relationships_dn   pprd,     pay_payroll_rel_actions    ppra,     pay_run_results            prr,     pay_run_result_values      prrv,     pay_input_values_f         pivf,     pay_balance_feeds_f        pbf,     pay_balance_types_v...

How to trace the tables which are impacted by a process in Oracle Cloud Applications.

You can run below SQL before and after submitting the process and check the tables for change in inserts/updates/deletes count. SELECT *    FROM all_tab_modifications  ORDER BY timestamp desc This table stores information of inserts, updates and deletes since the last time statistics were gathered on the tables.  Hope this helps !