Saviynt unveils its cutting-edge Intelligence Suite products to revolutionize Identity Security!
Click HERE to see how Saviynt Intelligence is transforming the industry.
Saviynt Copilot Icon

Parallel workflow query issue

Sharma
New Contributor III
New Contributor III

Hi,

I have a use case where, in a parallel workflow, I want that if a request is raised by the entitlement owner, it should get auto approved and if it is raised by any other user, it should go to the manager and then to the entitlement owner in the 2nd level. I am using the below query to filter this out but it is not working

entitlement.getOwnerRank1().contains(requestedby.username) eq true

Is there something wrong with the query? I am not getting any error but the request always goes to the manager

 

Sharma_0-1725036089600.png

 

3 REPLIES 3

rushikeshvartak
All-Star
All-Star
entitlement.getOwnerRank1().contains(requestedby.username) eq true or entitlement.getOwnerRank1().contains(user.username) eq true

https://forums.saviynt.com/t5/identity-governance/workflow-request-to-be-auto-approved-if-entitlemen...


Regards,
Rushikesh Vartak
If this helped you move forward, click 'Kudos'. If it solved your query, select 'Accept As Solution'.

stalluri
Valued Contributor
Valued Contributor

@Sharma 

entitlement.getOwnerRank1().contains(requestedby.username) eq true 

entitlement.getOwnerRank1().contains(user.username) eq true

(requester.username != user.username)

Best Regards,
Sam Talluri
If you find this a helpful response, kindly consider selecting Accept As Solution and clicking on the kudos button.

NM
Honored Contributor II
Honored Contributor II

Hi @Sharma rank 1 owner is present for the entitlement right?

This should work

entitlement.getOwnerRank1().contains(requestedby.username) eq true