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

Can I get a list of users for whom a certain update in user field happened on a certain day

Debankita
New Contributor III
New Contributor III

Hi Team,

Is it possible to get the list of users for whom a certain user field got updated on a certain day with the help of analytics control or any functionality.

 

 

2 REPLIES 2

SumathiSomala
All-Star
All-Star

@Debankita Sample query

select
u.username,
u.userkey as userkey,
uh.changelog
from
users u inner join usershistory uh on u.userkey = uh.userkey
where
username is NOT NULL
and uh.UPDATEDATE >= DATE_SUB(CURDATE(), INTERVAL 5 DAY)
and u.username is NOT NULL
and changelog like '%customproperty1%'

 

Regards,
Sumathi Somala

If this reply answered your question, please Accept As Solution and give Kudos.

rushikeshvartak
All-Star
All-Star

Refer https://docs.saviyntcloud.com/bundle/EIC-Admin-v24x/page/Content/Chapter17-EIC-Analytics/Managing-An...


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