How to create enumeration out of list in a mciroflow?

0
I have a microflow that returns a list of values, Can I add those values as additional options to an enumerator I have in my project?
asked
2 answers
1

No, there is no option in a microflow to create an enumeration. Also, it is not possible to add value to an enumeration. enumerations can only change in designtime. At runtime they are a fixed list of values.

answered
0

Hi Maxim, the right way to do this is to store those values in an entity, and then use an association to let the user select one of those items from a Base Entity, like this:

answered