Stop all microflow executing in a deeply nested microflow

0
Say you call a microflow Deep in the middle of microflow Parent. Is it possible to stop execution and return from microflow Deep so that the remaining part of microflow Parent doesn't execute without changing the Parent microflow or anything above the Parent? I would like to only change the Deep microflow to stop the process and return to the application.
asked
1 answers
0

Yes you can. Let the sub microflow return a boolean. If returned true all was well and the microflow could continue. If returned false you could stop the microflow and do what must be done then (revert the changes etc.)

Regards,

Ronald

answered