Click HERE to see how Saviynt Intelligence is transforming the industry. |
09/30/2024 02:57 AM
Hi Team,
We have created one access request approval workflow and we want to exclude primary and secondary certifier owner from the list. If ent is having primary or secondary certifier request should not go to them in workflow. How can we add this condition.
Regards,
Supriya
10/02/2024 11:25 PM - edited 10/04/2024 12:39 PM
Use custom assignment block with custom query
select userkey from entitlement_owners where entitlement_valuekey=${REQUESTACCESSOBJ.id} and rank not in (26,27)
10/03/2024 01:29 PM
Hi @supriya15 ,
Use the below custom assignment to exclude primary certifier (rank=26) and secondary certifier (rank=27).
select eo.userkey from entitlement_owners eo where eo.entitlement_valuekey=${REQUESTACCESSOBJ.id} and eo.rank not in (26,27)
If this helps your question, please consider selecting Accept As Solution and hit Kudos