suresh_klarna
2 days agoNew Contributor II
Audit report for Load
Hi experts,
Is there any audit report, to see
Who did the Load ?
When did it happen?
What XML file is used to Load?
I could not find it in the Navigation center?
//Suresh
Hi experts,
Is there any audit report, to see
Who did the Load ?
When did it happen?
What XML file is used to Load?
I could not find it in the Navigation center?
//Suresh
Thankyou MarcusH
It helps. Its unfortunate, that we need to build and it is not available as standard report.
It is needed to be SOX complaint.
There isn't a separate audit table for loading XML files. The information is saved to the TaskActivity table though (this is in the Framework database). You can retrieve it like this:
SELECT Description, UserName, AppName, StartTime, EndTime
FROM TaskActivity
WHERE (AppName = 'myappname') AND (TaskActivityType = 15000)