Forum Discussion

suresh_klarna's avatar
suresh_klarna
New Contributor III
2 months ago
Solved

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
  • MarcusH's avatar
    2 months ago

    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)