Click HERE to see how Saviynt Intelligence is transforming the industry. |
05/06/2024 04:41 AM
Hi Team,
We are seeking information regarding the configuration history preserved in Saviynt. Could you kindly guide me towards any official documentation or resources that elaborate on Saviynt's audit/change history?
05/06/2024 10:52 AM
Hi @AtrayeeDutta ,
Could you be more specific on what history you're referring to.
If you're looking for connection configuration history, you can find them on the connections page for each connection. Also you can query using analytics on externalconnection_history table for the same if you'd like to have a report.
Other than that what history are you looking at?? Because if there is anything that is stored then documentation would have a mention of the same.
Thanks
05/06/2024 11:18 AM
You can get same from Audit Trail Log
select ua.TYPEOFACCESS as 'Object Type',ua.ActionType as 'Action Taken',u.username as 'Accessed By', ua.IPADDRESS as 'IP Address',ua.ACCESSTIME as 'Event Time',ua.DETAIL as 'Message' from users u , userlogin_access ua, userlogins l where l.loginkey = ua.LOGINKEY and l.USERKEY = u.userkey and ua.AccessTime >= (NOW() - INTERVAL 100 Minute) and ua.Detail is not NULL