Click HERE to see how Saviynt Intelligence is transforming the industry. |
09/04/2024 11:05 AM
Hi team,
We need to hide all the entitlement for new service account reqeust and only allow users to add entitlements using modify account once the account is created. Is there any out of the box feature for this use case?
Thank you
Solved! Go to Solution.
09/04/2024 11:28 AM
09/04/2024 11:45 AM - edited 09/04/2024 12:15 PM
@SSinha_
Create dynamic attributes and put them in the query block.
In the Entitlementtype you can call this dynamic attribute.
Here we are using entitlement value and filter the entitlements.
09/04/2024 11:46 AM - edited 09/04/2024 12:11 PM
Your solution is not correct @stalluri
@SSinha_ Refer
Query : select 'NEW' as id union select 'Modify' as id
Entitlement Type query -{"Service Account":"ev.entitlement_value like '%IGA_%' and '${REQUESTTYPE}' !='NEW'"}
Config for Available Entitlement in Service Account
Refer video
09/05/2024 02:03 AM
Will try this and update here , and thank you so much.