If-Else in Workflow

ejeong
All-Star
All-Star

Hello

I want to make "if-else" block in workflow to check if entitlement.customproperty3 contains valude in Dynamic attribute. 

Please check if below syntax is valid 

entitlement.customproperty3.contains([Dynamic Attribute Name]) eq true

1 REPLY 1

nimitdave
Saviynt Employee
Saviynt Employee

Please try with below syntax and check:

(entitlement != null) and (entitlement.customproperty3!=null) and (dynamicAttributes.get('DynamicAttributeName') != null) and (entitlement.customproperty3.contains(dynamicAttributes.get('DynamicAttributeName')) eq true)

(entitlement != null) and (entitlement.customproperty3!=null) and (dynamicAttributes.get('DynamicAttributeName') != null) and (entitlement.customproperty3.contains(dynamicAttributes.get('DynamicAttributeName')))