Decision parameter to check enumeration?

0
Hi, how do you check an enumeration? Say there’s a list and one of them has the variable name Item_One, from the entity Stuff and attribute Items, how do you check it via the decision parameter? $Stuff/Items = Item_One $Stuff/Items = “Item_One” $Stuff/Items = (Item_One) None of the above work.
asked
1 answers
1

To check an enumeration you need to fully qualified name.

So if you have the enumeration ENUM in module MODULE and want to check the value:

$Stuff/Items = MODULE.ENUM.Item_One

answered