When working with a sequenceFlow in a process instance, I need to check a condition that may involve a variable that has not been defined yet. I want the flow to proceed even if the variable is not defined, rather than throwing an ActivitiException.
I have written my condition as follows:
${ A == null || A.a >= B.b }
However, when A is null (not defined), I am unable to proceed :/
Is there a solution to this issue?