Microflows...

2
what do the first letters of the following microflows mean? IVK_microflow1 DS_microflow2 ACo_microflow3
asked
2 answers
3

It's a naming convention for your microflows, so you know what microflow is used where.

IVK --> Invoke
DS --> Data Source, mostly used on grids / views populated by a microflow
ACo --> After Commit, microflow which is run after commiting an object, used as an event handler on an entity.

answered
1

IVK = Invoke and is usually used to indicate that it is a button microflow.

DS = Data Source and is usually used to indicate that this microflow is a datasource for a grid or dataview.

ACo = After Commit and identifies that this microflow is used on an entity after commit event.

answered