Trigger Microflow for ALL Records in Data Grid?

0
Hi – is there a way to have a microflow run against ALL records in a datagrid, not just a single selection?
asked
1 answers
4

Yes.  If you create a microflow with a parameter that is a list of objects, then call that microflow from an action button in the control bar of a datagrid, the microflow will receive

  • all of the records in the datagrid if your datagrid is configured for single selection
  • all of the selected records in the datagrid if your datagrid is configured for multi-selection

Note that the objects in the datagrid need to be the same type of objects as the microflow parameter.

answered