Hi, I am new to BPMN and camunda. How to implement this:
I have a user task, I want to set a timeout, let’s say 3 days.
If user don’t complete the task in 3 days, every hour I will send a SMS message to remind the user.
I tried to use boundary timer event to model the timeout, but failed to repeat the SMS notify task by 1 hour, as the intermedia timer catch event can only have duration, not cycle.
please help…
please note, the SMS task need to start after the 3 days timout.
from the docs the cycle expresssion can be something like R3/2022-04-27T17:20:00Z/P1D, if the middle part(the start time) can be something dynamic, it will give my problem a simple solution , for example R5/P3D/PT1H, which means delay 3 days, repeat 5 times every 1 hour @camunda team, is this a valid feature request ?
It takes an hour until I see the first reminder in Operate
I need the send reminder task start after 3 days… so this is not what I want.
In the real world, where we allow users a certain amount of time to complete a task, sending reminders during this grace period would be annoying. Isn’t this a reasonable scenario?
thanks for your input, maybe you can take a look at my second post above:
from the docs the cycle expresssion can be something like R3/2022-04-27T17:20:00Z/P1D, if the middle part(the start time) can be something dynamic, it will give my problem a simple solution , for example R5/P3D/PT1H, which means delay 3 days, repeat 5 times every 1 hour @camunda team, is this a valid feature request ?