10/03/2022 05:33 PM
How can express below statement if-else block in workflow?
(User.cp10 like 'CN' or user.cp10 like 'HK') and entitlement.customproperty10 like 'true')
Thanks
Solved! Go to Solution.
10/03/2022 05:39 PM
((user.customproperty10.toUpperCase().contains('CN') or user.customproperty10.toUpperCase().contains('HK')) and entitlement.customproperty10.toUpperCase().contains('TRUE'))
10/04/2022 12:03 AM
I validated the same in the WF and it is working