Click HERE to see how Saviynt Intelligence is transforming the industry. |
06/03/2024 08:26 AM
I have requirement
If user city is Bangalore and Department is any of this crdc|core tech|aide|awan then it should fetch group as cn=Bglr,XXXXX else cn=Hyd,XXXX
In workflow if user city Bangalore and department crdc|core tech|aide|awan is satisfied then it should go to manager approval and provision else it should go to manager approval and app owner approval and provision
06/03/2024 10:42 AM
user.country.equalsIgnoreCase('Banglore') and (user.department.contains('crdc') OR user.department.contains('core tech') OR user.department.contains('aide') OR
user.department.contains('awan'))
06/03/2024 10:59 AM
Thanks the actual requirement is,
If user city is Bangalore and Department is any of this crdc|core tech|aide|awan then it should fetch group as cn=Bglr,XXXXX else cn=Hyd,XXXX in request form
06/03/2024 11:10 AM
Then you can write SQL accordingly
06/03/2024 11:13 AM
How can this be achievable ? i need those details to be fetched runtime at the time of request on ARS form
06/03/2024 11:16 AM
06/03/2024 11:25 AM
There are 50 departments and if user belongs to city=bangalore and any of the listed department=out of 50 he should be see AD entitlement in selected list as cn=Bglr,XXXXX else cn=Hyd,XXXX in request form
06/03/2024 11:32 AM
06/03/2024 11:34 AM
There are 50 departments how can i add them in cp2?
06/03/2024 11:39 AM
comma separated
06/03/2024 11:41 AM
Can this be achievable using datasets instead of using 50 names in attributes.
06/03/2024 11:41 AM
Another Approach
06/07/2024 08:07 AM
Instead of using dynamic attribute,
1. user will select an application, no entitlements are selected
2. user would submit the request
3. workflow should check for employetype=employee and department = ('A','B') and user belong to AD='cn=java,XXX' group, if condition satisfies request should go to manager approval and then check for user location[if Bangalore] provision to AD group cn=Bglr,XXXXX else cn=Hyd,XXXX. if condition does not satisfy request should go manager approval and application owner approval and check for user location[if Bangalore] provision to AD group cn=Bglr,XXXXX else cn=Hyd,XXXX.
06/08/2024 09:15 AM
Workflow will not provision any access automatically
06/11/2024 09:41 AM
Hi,
In the same case how to fetch/check in dynamic attribute if user is member of AD groups cn=abc,XXXX and/or cn=xyz,XXXX and/or cn=qwe and it show display in ARS form
06/13/2024 10:32 PM
using dynamic attribute you can validate .