Hi
If i give as below, then it does not deploy from the activity designer. Can you please let me know what is the issue or is there any syntax issue
<sequenceFlow>
<conditionExpression xsi:type="tFormalExpression"><![CDATA[${nameVO.type.equals("XXX")}]]></conditionExpression>
</sequenceFlow>
If i try as below, then it works: But, i need to do through a bean.
<sequenceFlow>
<conditionExpression xsi:type="tFormalExpression"><![CDATA[${type.equals("XXX")}]]></conditionExpression>
</sequenceFlow>