Dataview: on save event

1
I would like my dataview to call a microflow directly after hitting the save button, is that possible?
asked
1 answers
3

You have two options:

  • Add an "after commit" action to your object, which will be triggered after each commit. This might not be want you want, as this will be triggered after each commit in microflows as well.
  • Replace the "Save" button with a Microflow trigger. Do whatever you want in the microflow, and don't forget to manually commit it there.
answered