Pause microflow execution until page is closed

0
Hi, I am calling a show page activity in a microflow to show a popup page to get some input from the user. But the page is being shown after the entire microflow is executed completely.   How can I change this behavior to show the page as per the execution flow defined in the microflow? And also how to pause the execution until user closes the page?   Thanks
asked
2 answers
0

Hi Shardul,

Unfortunately this is not possible at the moment. If you want to achieve something like this you will have to split your logic into two parts. 

  1. The part that is supposed to execute before the page. At the end of this part you show the pop-up where the user can input.
  2. The part to be called after user input. This should be called from the continue button on the input page.

 

Hope this helps!

answered
0

It is not possible to pause the execution of a microflow. Instead you can break down your operation in parts which is good for maintainablity and also a good practice.

Show the page first, let the user provide input and then on that page have a button which will call the microflow and execute your logic.

answered