Click HERE to see how Saviynt Intelligence is transforming the industry. |
04/12/2022 12:59 PM
So after you create a SAV role how do you populate it with a large number of users?
Say I create one SAV_APPROVER How would I get say 700 users into it without doing it one by one? Could it be populated by an upload?
Solved! Go to Solution.
04/12/2022 02:07 PM
Hi John,
As of now, we don't have the fetaure to assign sav role in bulk.
Thanks
Ajay
04/12/2022 02:07 PM
Okay, I would have thought that you would have come across this before. Is this something that can be added to the system so that every one could use it? Asking because as a large corporation is building out their use of the system and creating the roles keying 500 plus users does not see to be the best use of time.
04/12/2022 02:07 PM
Hi John,
Point is taken. We can have this one of our enhancement.
There is another way to have this. Enable saviynt4saviynt, it would allow sav roles to be managed as one of the entitlement type for the sav4sav application. Then you can request for multiple user request.
Thanks
Ajay
04/12/2022 02:07 PM
Is there an accounts and role import xml available to get in all the SAV Roles as entitlements on SAV4SAV endpoint so that they can be made requestable in ARS?
04/12/2022 02:07 PM
Create a Execute Custom Queries job and put the below SQL in. Modify it with your needs. I think there is an issue with the Getdate but you can hardcode a date. Run the SQL then make sure you have UserUpdate rules etc depending on your needs.
INSERT INTO user_savroles (USERKEY,ROLEKEY,UPDATEDATE,UPDATEUSER )
SELECT USERKEY, 12, GETDATE(),'admin'
FROM Users
Where EMPLOYEETYPE = 'Contractor' and STATUSKEY =1