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

report samples/examples to detect movers with in eic?

theosveg
Regular Contributor II
Regular Contributor II

Hello community,

are there report samples, or examples available to detect movers? 

Movers are triggered when there is a change in departmentnumber on import

5 REPLIES 5

rushikeshvartak
All-Star
All-Star

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

Amit_Malik
Valued Contributor II
Valued Contributor II

1) using user update rule and sav for sav connector, update user customproperty with mover and date. Use that in report.

2) trigger user update rule to notify or do something else. And then use user history table to fetch that in query.

SELECT u.username FROM USERS U JOIN usershistory uh ON u.userkey = uh.userkey WHERE uh.ruleruns LIKE '%Mover Notification%' AND uh.updatedate >= CURDATE() -  INTERVAL 7 DAY;

 

Kind Regards,
Amit Malik
If this helped you move forward, please click on the "Kudos" button.
If this answers your query, please select "Accept As Solution".

theosveg
Regular Contributor II
Regular Contributor II

Select command denied for usershistory, is that normal?

theosveg
Regular Contributor II
Regular Contributor II

okay I guess this only works with in analytics, is there way to read the change log? it looks like this and i would like to identify if possible the users old title, department, manager and new title, department and manager after change.?? @rushikeshvartak @Amit_Malik 

theosveg_0-1726757928355.png

 

You need to use from analytics and run history only preview will not show BLOB data

rushikeshvartak_0-1726767207168.png

https://docs.saviyntcloud.com/bundle/Release-Notes/page/Content/v24x/Release-Notes-24-8.htm

 

 

Use below query for your requirement 

rushikeshvartak_2-1726767289169.png

 

select u.username, u.userkey, uh.changelog from users u inner join usershistory uh on u.userkey = uh.userkey where username = '137658'
and uh.UPDATEDATE >= DATE_SUB(CURDATE(), INTERVAL 1 MONTH) and changelog like '%departmentname%'

 

rushikeshvartak_3-1726767288992.png

 

rushikeshvartak_1-1726767288723.png


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