06/22/2023 04:44 AM
Hi Team,
We have a requirement that in workflow if the requestee and the entitlement owner of the entitlement requested by the requestor is same, then it should to the manager.
We are using if else block, we have tried below conditions:
(entitlement.getOwnerRank1().contains(RequestedFor.username) eq true)
(entitlement.getOwnerRank1().contains(user) eq true)
The above statements did not work.
I would be grateful if any advice/solution.
Thank you,
Sudheer Kaneti.
Solved! Go to Solution.
06/22/2023 05:49 AM
Hey Sudheer,
Can you try this?
entitlement.getOwnerRank1().contains(user.username) eq true
Please refer to the below link:
Thanks,
Armaan
06/22/2023 06:18 AM
Hi Armaan,
This is working as expected. Thank you for the solution.
Thank you,
Sudheer Kaneti.
06/22/2023 06:19 AM
Hi Armaan,
This is working as expected.
entitlement.getOwnerRank1().contains(user.username) eq true
Thank you,
Sudheer Kaneti.