Announcing the Saviynt Knowledge Exchange unifying the Saviynt forums, documentation, training,
and more in a single search tool across platforms. Read the announcement here.

Request for Documentation on Saviynt's Audit/Change History

AtrayeeDutta
Regular Contributor
Regular Contributor

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?


Thanks,
2 REPLIES 2

pruthvi_t
Saviynt Employee
Saviynt Employee

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


Regards,
Pruthvi

rushikeshvartak
All-Star
All-Star

You can get same from Audit Trail Log

rushikeshvartak_0-1715019511361.png

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

 


Regards,
Rushikesh Vartak
If you find the response useful, kindly consider selecting Accept As Solution and clicking on the kudos button.