Is there a way to use wild cards in workflow expressions?
Example:
Current Expression: if($new.itemA.servDept.shortCode = "My Test SVD",$NO_VALUE,”SVD2”)
Requirement: We want the result should be “$NO_VALUE” when SVD shortcode has “Test”.
Something like below:
if($new.itemA.servDept.shortCode like "%Test%",$NO_VALUE,”SVD2”)