Click HERE to see how Saviynt Intelligence is transforming the industry. |
07/15/2024 10:40 PM
Requirement :
I am using below workflow but the new account is getting auto approved and a task for new account is created in Pending task. I need the task to be go through the same approval process as set for access. Is there any configuration that needs to be set.?
Solved! Go to Solution.
07/15/2024 10:45 PM - edited 07/15/2024 10:46 PM
Use
ars_requests.requesttype == 3 or entitlement.entitlement_value != null
Refer https://forums.saviynt.com/t5/identity-governance/workflow-logic-issues-separating-new-account-and-a...
07/15/2024 11:15 PM - edited 07/15/2024 11:17 PM
I tried with below and the one you mentioned above but still the new account is getting auto approved instead of following the approval process...
((ars_requests.requesttype==3) and (entitlement != null))
07/15/2024 11:26 PM
Its or condition
ars_requests.requesttype == 3 or entitlement.entitlement_value != null
07/15/2024 10:57 PM
Hi @SavUser1 , you can't send account approval to entitlement owner as account doesn't have anything related to it.
07/15/2024 11:05 PM
You can send
07/16/2024 07:42 AM
It is not working, the new account is getting auto approved.
Following are the steps :
Is the access approval only works for access and not for account ?
07/16/2024 10:51 AM - edited 07/16/2024 10:51 AM
@SavUser1 workflow type should be parallel , if not check again
07/16/2024 12:07 PM
07/16/2024 12:52 PM
Here is the screenshot.
07/16/2024 12:56 PM
07/16/2024 02:48 PM
The account is again auto approved.
Below is the flow (highlighted)
07/16/2024 04:26 PM - edited 07/16/2024 04:30 PM
Ideally if u need both accounts and access approval then if else block is not needed and instead of access approval use custom assignment block with custom query
select distinct eo.userkey
from entitlement_owners eo INNER JOIN request_access ra ON ra.ACCESSKEY=eo.entitlement_valuekey
where ra.REQUESTKEY=${ARSREQUEST.id}
07/16/2024 01:57 PM
Is it Serial WF or Parallel WF?
Thanks,
Devang Gandhi
If this reply answered your question, please Accept As Solution and give Kudos to help others who may have a similar problem.
07/16/2024 02:40 PM
It is parallel.