How do I run through all selected items in a ReferenceSetSelector in a microflow at a ChangeEvent?

0
On my referencesetselector i like to run a microflow on the Change Event. Inside the Arguments i can choose selection or all row.   The microflow creates 2 Parameter. If i try to loop trough my list the list is Always empty even i have selected one or more Elements.   The only way i fixed this is to create my own list from the upper object (board) but the i run for all items not only for the selection.   Any Ideas how to fix this.   Thanks Stephan     
asked
1 answers
0

Pass only the Board object and do a retrieve there of the userstories.

Regards,

Ronald

[EDIT]

You need to use a helper object because you need to remember the current list of stories attached to Board. So create an helper object and attach the current stories. Show that object and let the user add or remove stories to that list. Place a confirm button to process the list. In that microflow you can then compare each object if it was added, removed or not changed and do the stuff you want to do based on that. There are some list function to do these kind of checks.

answered