I’m using Camunda Modeler on a DMN Table and for one of my rules (rows), the cell for my employeeType
input variable needs to match a string that contains a comma (,) in it.
Camunda Modeler doesn’t complain (or even show what is going on) but when I execute the DMN table, the Camunda engine/FEEL thinks I mean “Manager”, “Employee” (one OR the other) when I actually mean literally the string “Manager, Employee” –a single string that contains a comma.
How can I escape the comma? I’ve tried “Manager{{‘,’}} Employee”, “Manager, Employee”, and using encodings like “Manager, Employee”.
I can work around it, of course by setting it to something like “Manager & Employee” but that would require me to change upstream dependencies and I would like to avoid this.
Thank you,
Daniel S.