Click HERE to see how Saviynt Intelligence is transforming the industry. |
09/09/2024 10:05 AM
Hi All,
Is there a way to control users who are getting listed in change password page based on some user attribute like (location, Employeetpye or any other) using SAV ROLE?
We are trying to come up with a SAV role with access permission to restrict password change based on location?
In SAV role we don't have an option for custom query, is there any other way to achieve this? please suggest.
Regards,
Darshan
Solved! Go to Solution.
09/09/2024 10:08 AM
You can achieve using sav role Whom to request with JSON
Sample
[{"for":"ChangePassword","query":"select a from Users a where a.manager= ${users.id} and a.statuskey=1"},{"for":"UpdateUserRequest","query":"select a from Users a where a.employeeType IN ('External','Third Party','Vendor') and a.manager= ${users.id} and a.statuskey=1"},{"for":"RequestAccessOthersMultiUser","query":"select a from Users a where a.manager= ${users.id} and a.statuskey=1"},{"for":"ViewExistingAccess","query":"select a from Users a where a.manager= ${users.id} and a.statuskey=1"}]