Limit form to a list

0
I am opening a form through a microflow. Within the microflow I perform an iteration over a list. The iteration throws out all object instances which do not meet a certain criterium. Afterwards I would like to open the form with the remaining objects in the list. In what way can this be done?
asked
1 answers
2

You could add an attribute to the entity you are iterating over and set the value (probably enumeration or boolean). Then you can show this form with an XPath on it based on this value.

Or if the criteria is easy enough you can just use an XPath on the form without needing to go through the iterative action.

answered