How to create a nonpersistent object in a microflow, pass it to a page, change its value?

0
Hello,   In a microflow, I create an object of a nonpersistent entity. Then, using Show Page widget, I show another page. The user does something on this page to update an attribute of this entity and the microflow continues. When I debug my app, I see that an object is passed to the new page and its attribute is changed. However, when we return to the original microflow, the attribute remains the same.   How can I solve this problem? Thank you in advance.
asked
1 answers
1

The microflow will continue after the show page is started, so it will not wait for response

You can do somthing with a show message activity, make it blocking, then the microflow will continue.

But the best method is to handle with another microflow button the contuation for your program....

answered