It seems the modeller is not recognizing the built-in boolean function described here is defined()
The expression language used by Camunda 7 is JUEL and not FEEL. Thus, the function is defined()
is not available. I see different options:
- Use a JUEL expression and check whether the variable is
null
- Change the type of the condition to Script with the format “FEEL” then you can use
is defined
inside that script. - Switch to Camunda 8 to harness the full power of FEEL and a cloud native process engine
2 Likes
option 2 worked beautifully. Thanks for the super quick reply !!