Click HERE to see how Saviynt Intelligence is transforming the industry. |
05/23/2022 04:50 AM
Hi,
I have developed analytic to see what all roles are modified and created for the certain period and by whom.
But Now the requirement is to fetch any modification that was done to the role.
Could you please tell me which table holds history or modification details for the modified roles.
Regards,
Arvind
Solved! Go to Solution.
05/23/2022 07:27 AM - edited 05/23/2022 07:30 AM
Hello,
You can query 'roles_historychangelog' table to view similar information.
select ROLES_HISTORYCHANGELOGKEY,COMMENTS as 'Comment',CREATIONDATE,FIELDNAME,NEWVALUE,OLDVALUE,OPERATION,ROLEHISTORYKEY,ROLEKEY,UPDATEUSER from roles_historychangelog;
06/21/2022 01:26 AM
Hi Sahaj,
There is one more attribute called "modfied on". I need the date when last time role was modified in the roles_historychangelog table.
Do you know what is the column name in Saviynt DB for "modfied on" attribute?
Regards,
Arvind
06/21/2022 03:12 AM
Hi Arvind,
"CREATIONDATE" is the column that holds the modified date in the roles_historychangelog table.
Regards,
Jayasudha R
10/04/2022 01:48 PM
@sahajranajee Is it possible to get reference key to arstasks table for the changes logged in roles_historychangelog?