Hi, In a conditional sequence flow, I am using an Expression Function as below:
<conditionExpression xsi:type="tFormalExpression">
<![CDATA[${variables:isNotEmpty(myMap.users)}]]>
</conditionExpression>
Here “myMap” is a java.util.Map that is created and available as a variable.
“users” is one of the keys in the map and its value is a list containing one or more objects.
However, this condition is getting evaluated to false. Please let me know the issue here.