Move on based on Enumeration value chosen by client

0
Hey guys,  Can someone tell me how to get an enumeration’s value that was chosen by a client?  e.g. ‘Client A ‘ took ‘Value A’ of the Enumeration. I have a Microflow; and it should take different directions based on the enumeration’s value.  Further, the enumeration is not in the same entity as the parameters inside the Microflow but they have a 1 to 1 association.  Thanks in advance! :-)
asked
1 answers
2

Hi, In your microflow you can retrieve the entity that contains the enumeration attribute and then you can add an exclusive split with the condition $entity/enumAttribute. For example:

answered