DMN decision table not working with String no error

I using a flowable modeler to design a decision table.

<input label="CustomerCode">
    <inputExpression id="inputExpression_3" typeRef="string">
      <text>code</text>
    </inputExpression>
  </input>



<inputEntry id="inputEntry_3_1">
      <text><![CDATA[== "28"]]></text>
    </inputEntry>


or 
 <inputEntry id="inputEntry_3_1">
      <text><![CDATA[== 28]]></text>
    </inputEntry>

But the decision table does not fire this rule.
How to check an equal string with input as a number.

Hi,

The first fragment you show here is correct.
A string equation is done like this.
If there is an issue this is caused by something else.

Take a look at the logging or at the ACT_DMN_HI_DECISION_EXECUTION table.

Regards,

Yvo

1 Like