Saviynt unveils its cutting-edge Intelligence Suite products to revolutionize Identity Security!
Click HERE to see how Saviynt Intelligence is transforming the industry.
Saviynt Copilot Icon

Analytics Report

Chirag_Gupta
New Contributor III
New Contributor III
Hello Everyone

How can I generate a report to check if any user attributes have been updated in the last 24 hours, but only for specific attributes and not all of them?

Thanks,

Chirag

4 REPLIES 4

pmahalle
All-Star
All-Star

Hi @Chirag_Gupta ,

Execute below query in the analytics will give all the updates for the user in the CHANGELOG column.

Run this query from the analytics tab in order to get the information.

SELECT 
    u.username, u.firstname, u.lastname, uh.updatedate as 'Update Date', uh.changelog
FROM
    users u
        INNER JOIN
    usershistory uh ON u.userkey = uh.userkey 
where u.username='<Provide username here>';

Note: It will not work in Data analyzer and even in analytics preview mode.


Pandharinath Mahalle(Paddy)
If this reply helps your question, please consider selecting Accept As Solution and hit Kudos 🙂

Is there a way to obtain information about which specific attribute was changed?

No. You need to filter manually


Regards,
Rushikesh Vartak
If this helped you move forward, click 'Kudos'. If it solved your query, select 'Accept As Solution'.

rushikeshvartak
All-Star
All-Star

You can check using userhistory table but till v24.4 data is visible in encrypted format and it’s working in v24.5

 

Refer https://forums.saviynt.com/t5/identity-governance/usershistory-table-changelog-blob-data-is-not-read...


Regards,
Rushikesh Vartak
If this helped you move forward, click 'Kudos'. If it solved your query, select 'Accept As Solution'.