suresh_klarna
2 months agoNew Contributor III
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
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)