User Task with time out

Hello,

I want to implement a user task with timeout feature.
If this user task is not processed in 36 hours, I want to set a variable “isFalseApplication” to true and go to next gateway, otherwise I want to set this variable by user action.
Then that gateway will use “isFalseApplication” variable.
How can I achive this in camunda BPM Modeler?

Regards.

Hi @stikic
You should attach a timer boundary event to the user task.

Read about timer boundary event in below docs
https://docs.camunda.org/manual/7.9/reference/bpmn20/events/timer-events/#timer-boundary-event

Below docs describe how to set time duration
https://docs.camunda.org/manual/7.9/reference/bpmn20/events/timer-events/#time-duration

3 Likes

Thank you. It works!

Hi stikic …can you tell me how did you achieved this part - “I want to set a variable “isFalseApplication” to true and go to next gateway”…