suresh_klarna
21 days 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
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)
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.
Depending on the type of xml loaded you are going to be updating different elements in onestream e.g metadata xml affects metadata only, workflow xml only affects workflows, etc
So depending on what xml you are loading will impact what elements you are checking audit history for
There are audit tables in onestream that capture all of these changes depending on what has been updated through xml load
This is what you need for audit and the Standard Application Reports solution on Solution Exchange covers audit reports based on this logic
Hope this helps clarify
Sam
Hi Sam,
Thanks for input.
Unfortunately, not all changes is captured in audit tables.
For example: If you add a button to dashboard, the change is not captured in audit tables