rul-05720 datatype mismatch for test jaxbelement >int
Sometime we face this error while creating business rule. I was facing the same issue with variable that I was using in business rule by removing minOccurs=”0″ in my schema element. Like below
<xs:element name=”netAmount” type=”xs:decimal” minOccurs=”0″ nillable=”true”/>
just remove the highlighted area and try to create your business rule with newly updated schema.
<xs:element name=”netAmount” type=”xs:decimal” nillable=”true”/>