Is there a way to find out who edited a report?

Some of our other Modules have Audit logs but I do not see that in Reports.  We have the date modified but that only shows the last time an edit was made. 

Parents
  • Hi  ,

    Thanks for sharing this question. 

    Sugar stores the ID of the user who made the last modification to the report, but this information is not displayed in the user interface.
    If you want to check it, a good option is to create a custom query in Advanced Reports using the following query:


    SELECT 
        sr.id,
        sr.name,
        sr.date_modified,
        sr.modified_user_id,
        u.user_name AS modified_by_username
    FROM saved_reports sr
    LEFT JOIN users u ON sr.modified_user_id = u.id
    WHERE sr.id = '{ReportID}';


    This will show you the user who last edited the report.



    Let me know if this helps!

    Cheers,

    André



Reply
  • Hi  ,

    Thanks for sharing this question. 

    Sugar stores the ID of the user who made the last modification to the report, but this information is not displayed in the user interface.
    If you want to check it, a good option is to create a custom query in Advanced Reports using the following query:


    SELECT 
        sr.id,
        sr.name,
        sr.date_modified,
        sr.modified_user_id,
        u.user_name AS modified_by_username
    FROM saved_reports sr
    LEFT JOIN users u ON sr.modified_user_id = u.id
    WHERE sr.id = '{ReportID}';


    This will show you the user who last edited the report.



    Let me know if this helps!

    Cheers,

    André



Children