Cronjob in orchestrator

hi. how can I create a cronjob in orchestrator to trigger a process in the days: TUE,WED,THU from the hour 16:00 in the first 2 weeks of the month?

Use time triggers :
0 0 16 ? * TUE,WED,THU

Now simply create business exception by checking if date greater than 14, just throw. you can just move to end process too.

or use this same expression and make two triggers, and set up start and end date.

Hi @adi.orza

Use this expression

0 0 16 1-14 ? TUE,WED,THU
Please use this expression in trigger

Cheers

1 Like

HI @adi.orza ,

Orchestrator cron does not support first two weeks directly, so I created two triggers. One with day of month 1-7 and another with 8-14, both scheduled at 16:00 on Tuesday to Thursday. This covers the first two weeks of the month within the required days and time.

1 Like