Reputation: 61
in JBPM is it possible to automatically skip a human task after the due date?
This is an example of my process
In task 'Evaluation' the user can ask for a Contribution, in this case the next task will be 'Contribution'. The task 'Contribution' has a sla of 2 day. After this period the process must automatically return to task 'Evaluation'.
Is this possible?
Thanks
Upvotes: 1
Views: 263
Reputation: 1631
Try using TimerBoundaryEvent for Contribution
task. Define 2 day sla at TimerBoundaryEvent if UserTask is not completed in 2 days, task will be cancelled and process flow can continue to Gateway or other tasks.
Upvotes: 1