cancel
Showing results for 
Search instead for 
Did you mean: 

how to reschedule a task within the workflow

stephsmith
Champ in-the-making
Champ in-the-making
We need the ability to “schedule” a task within our workflow. The requirements are
* Some event will cause the task to be scheduled. The task to be scheduled is often just a subprocess that does some extra processing.
* Need the ability to change the time at which the task is scheduled. For example, the task/subprocess is scheduled to run in 3 days, but I want to change this so scheduled to run in 2 days insteadd


Any suggestions on how you might go about modelling this scheduling ?  How can we change the time at which it runs?

Thanks for any ideas/suggestions
1 REPLY 1

martin_grofcik
Confirmed Champ
Confirmed Champ
Any suggestions on how you might go about modelling this scheduling ?

    - event can start process
    - the first task in the process (after the none start event) is timer catch event (it will catch timer event = wait till timer).
How can we change the time at which it runs?
To reschedule the job you have to change timer row in the DB.
(or delete current timer and reschedule the new one.)

Regards
Martin