Forum Discussion

4 Replies

  • MarcusH's avatar
    MarcusH
    Valued Contributor

    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)

     

  • suresh_klarna's avatar
    suresh_klarna
    New Contributor III

    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.

    • sameburn's avatar
      sameburn
      Icon for OneStream Employee rankOneStream Employee

      Hi suresh_klarna​

      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

  • suresh_klarna's avatar
    suresh_klarna
    New Contributor III

    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