Click HERE to see how Saviynt Intelligence is transforming the industry. |
07/07/2024 11:26 PM
Hi Team,
Can we add approval workflow for enable and disable account while we raise request from ARS page.
Please let me know any solution.
Thanks
Arnab Pal
07/08/2024 12:15 AM - edited 07/08/2024 12:16 AM
@ARNAB86 we can add enable and disable also
based on requesttype you can create it
refre: https://forums.saviynt.com/t5/identity-governance/enable-disable-service-account-workflow/m-p/94963
07/08/2024 12:17 AM
Thanks Raghu,
But in Endpoint we can see only Add and remove workflow we can add.Is there any other place where i can add the workflow so that it works.
07/08/2024 12:18 AM
in workflow level u can mention it it work
https://forums.saviynt.com/t5/identity-governance/enable-disable-service-account-workflow/m-p/94963
07/08/2024 12:34 AM
Thanks Raghu,
Can you please let me know i want that approval workflow only for specifci endpoint (like AD) not for others s i how could i restrict only the approval workflow will work for AD endpoint
Thanks for the help
07/08/2024 12:51 AM
@ARNAB86 , whatever workflow you have added int the security system that will be triggered and SS is specific to an application.
07/08/2024 12:54 AM - edited 07/08/2024 12:56 AM
@ARNAB86 please refer below
add endpoint level cp1 and validate based on if else block
endpoints.customproperty1 eq 'AD'
07/08/2024 03:24 AM
@ARNAB86 workflow for enable and disable will be based on the "Access Add workflow" configured under the security system.
To decide the level of approval required for enable and disable, use the if/else block in the workflow as suggested by @Raghu
07/08/2024 08:06 PM
Block Name | Condition | Comments |
EnableDisable | ars_requests.requesttype=29 or ars_requests.requesttype=30 | 29 is Enable Account 30 = Disable Account Request |
isApprovalApplicable | endpoints.customproperty1 ne null and ( endpoints.customproperty1.toUpperCase().startsWith('ENABLEDISABLEWORKFLOW')) | Endpoint CP1 is not null and if Endpoint then workflow will route to User Group |
Workflow