Announcing the SAVIYNT KNOWLEDGE EXCHANGE unifying the Saviynt forums, documentation, training, and more in a single search tool across platforms. Click HERE to read the Announcement.

If-Else in Workflow

ejeong
Valued Contributor
Valued Contributor

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')))