Hi Anne Timm,
When you pause a Workflow user task, the Workflow Engine internally manages the task state. Just updating the task status with Change Object is not enough — because the Workflow runtime will override it again.
To properly unpause a user task, you must use the correct Workflow Operations:
Correct Approach in Microflow
Use the Workflow Activity:
Change Workflow State → Unpause workflow Then, retrieve the related user tasks and perform:
Workflow User Task → Resume User Task
Example microflow steps:
1. Retrieve the user task(s) for the workflow instance
2. Action → Unpause Workflow
3. Loop through retrieved tasks
→ Operation → Resume user task
This will correctly update both: ✔ Workflow instance state
All associated user tasks state (Back to In Progress)
Why your current approach failsYou are only changing the attribute value on the task → but the Workflow Engine still considers it paused internally, so it doesn’t reflect in the UI or engine state.
It might be locking. In the Workflow module, there is a microflow like the one below. Instead of doing it from the UI, can you try mitigating this in your own microflow and test again?