I have this scenario. Could any body tell me what is the best approach in achieving this?
I have a task “a” this is assigned to Mr. x .Mr. X decides he does not want to do anything about this task . He wants to “park” the task. This means he wants to do nothing about the task for specified period say 1 month. After 1 month the task has to be re assigned to him automatically.
I think a better way is to use the camunda taskProperty “followUpDate” on this and use a taskList filter sso all tasks with a followUpDate > now() are not displayed.
Advantages:
clear process execution model: the task is not completed several times
access to the task if you want to work on it earlier - in the model above, the timer waits for a given time. If the issue is resolved earlier, you could just use the regular tasklist view to still access and complete the task.