-
Bug
-
Resolution: Done
-
Blocker
-
7.22.0.Final
-
2019 Week 20-22
-
5
-
- Create dmn model like shown in the screenshot
- Download it source
- It will miss the variable name as it does in the attached reusable (1).dmn
-
NEW
-
NEW
The DMN Designer generates empty variable name for literal expressions.
Current state:
<dmn:decision id="_9AF9596C-BA60-4C45-9531-F6B6FD7BC008" name="constant"> <dmn:variable id="_782DDC9C-8B8B-4D18-9711-40634A46864C" name="" typeRef="string"/> <dmn:literalExpression id="_F7C245A2-9CE3-4CFE-AAD5-D6B98C502CE9"> <dmn:text>"abc"</dmn:text> </dmn:literalExpression> </dmn:decision>
Expected state:
<dmn:decision id="_9AF9596C-BA60-4C45-9531-F6B6FD7BC008" name="constant"> <dmn:variable id="_782DDC9C-8B8B-4D18-9711-40634A46864C" name="constant" typeRef="string"/> <dmn:literalExpression id="_F7C245A2-9CE3-4CFE-AAD5-D6B98C502CE9"> <dmn:text>"abc"</dmn:text> </dmn:literalExpression> </dmn:decision>