Hello!
In the "System" tab, go down and Find "Audt", then "Audit logs". Here you have all the information you may need sorted by date.
I don't know if exist any way to export this periodic as a report, but here you have a simple query for Blue Prism Database
SELECT eventdatetime
, USERS.username
, sNarrative
, comments
FROM BPAAuditEvents AUDIT WITH (NOLOCK)
LEFT JOIN BPAUser USERS WITH (NOLOCK) ON AUDIT.gSrcUserID = USERS.userid
ORDER BY eventdatetime
When someone modifies any process or object, you can read in the "sNarrative" column something like this:
The user 'XXXX@XXXXX' modified the process 'YYYYYY'
Hope this help you!
Bye 🙂
------------------------------
Pablo Sarabia
Programmer
Altamira AM
------------------------------