jomarko commented on issue #985:
URL:
https://github.com/apache/incubator-kie-issues/issues/985#issuecomment-2024662643
@jeremyfordip hi, I have one observation, that should not probably has an
impact for the **Priority** hit policy, however it may be worth checking on
your machine.
In the first screenshot your share, there are defined also column
constraints, i.e. values that are acceptable as inputs for given columns. I
speak about values for **Credit risk category** (High, Medium, Low) and
**Affordability category** (Affordable, Marginal, Unaffordable)
While in the generated xml, it seems you do not set such constraint, because
there is missing similar piece of xml:
```
<dmn:input id="_9D1E5D4A-78B3-4A64-A9A5-81527DE6CF33">
<dmn:inputExpression id="_C72911ED-FA0E-43F0-B08B-3BB75455E1F9"
typeRef="string">
<dmn:text>CreditRiskCategory</dmn:text>
</dmn:inputExpression>
<dmn:inputValues kie:constraintType="enumeration"
id="_BFE965CA-6892-4DC9-9415-F22DC3E89376">
<dmn:text>"High", "Medium", "Low"</dmn:text>
</dmn:inputValues>
</dmn:input>
```
Your model contains only:
```
<dmn:input id="_9D1E5D4A-78B3-4A64-A9A5-81527DE6CF33">
<dmn:inputExpression id="_C72911ED-FA0E-43F0-B08B-3BB75455E1F9"
typeRef="string">
<dmn:text>CreditRiskCategory</dmn:text>
</dmn:inputExpression>
</dmn:input>
```
Or in the UI editor, it look like this.

--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]