Announcing the Saviynt Knowledge Exchange unifying the Saviynt forums, documentation, training,
and more in a single search tool across platforms. Read the announcement here.

Workflow if-else

ejeong
Valued Contributor
Valued Contributor

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

2 REPLIES 2

rushikeshvartak
All-Star
All-Star

((user.customproperty10.toUpperCase().contains('CN') or user.customproperty10.toUpperCase().contains('HK')) and entitlement.customproperty10.toUpperCase().contains('TRUE'))


Regards,
Rushikesh Vartak
If you find the response useful, kindly consider selecting Accept As Solution and clicking on the kudos button.

Manu269
All-Star
All-Star

I validated the same in the WF and it is working

Regards
Manish Kumar
If the response answered your query, please Accept As Solution and Kudos
.