Hi every body,
I want the process start every hour, but I want to limit in in workday and working hour. How I can do it?
Thank you.
Hi every body,
I want the process start every hour, but I want to limit in in workday and working hour. How I can do it?
Thank you.
Hello.
Bonita platform uses http://www.quartz-scheduler.org/ to handle BPMN timers. This means that you can use CRON expressions that are supported by the Quartz Scheduler.
The following page can help you generate a CRON expression that can do that. https://www.freeformatter.com/cron-expression-generator-quartz.html
e.g.
0 0 8-18 ? * MON-FRI *
Put this expression in the timer condition (cycle) of your start timer event.
HTH