Access audits for changes made to Default Year Period or Current Year Period in GL Settings

Description of Issue
  • How can I audit who update Default Year/Period in General Ledger Settings? 
  • How can I audit who update Current Year/Period in General Ledger Settings? 
  • How can I audit who used Close and Roll forward in month end manager to update the current period?
  • How can I audit who used Roll Accounting Period?
Context
  • General Ledger Settings
  • Month End Manager
  • Roll Accounting Period
Cause


Resolution

To review audit records for these fields, the query below can be run

select * from mu_audit_history
where sa_file = 'glparmnt'
and sa_field_changed in ('glpa_deflt_per','glpa_deflt_yr','glpa_curr_per','glpa_curr_yr')
order by sa_change_date desc