How to execute an action within a microflow before the end event

0
Hi all, Our app has a long microflow that is executed in a task queue. I would like to ad a status so the user can see when the microflow is finished. I added a 'status' enumeration to the entity en change it to 'busy' in the beginning of the microflow. But it doesn't change in the client until the microflow has ended. How can I get it to change status during the flow?   Thanks in advance!
asked
1 answers
2

Use the community commons commitInSeparateDatabaseTransaction. Here you can commit an object directly to the database (in its own transaction) and the correct status will be shown if other users retrieve that object.

Regards,

Ronald

 

answered