Hi Guys,
I have a process which needs to run on every 25 days interval. How can we schedule it?
Example : If process ran on 14th June then next run should be on 9th of July.
Thanks for help in advance
Hi Guys,
I have a process which needs to run on every 25 days interval. How can we schedule it?
Example : If process ran on 14th June then next run should be on 9th of July.
Thanks for help in advance
In the Trigger, select Advanced:
Then enter the desired Cron expression.
https://www.freeformatter.com/cron-expression-generator-quartz.html
My requirement is to run process on every 25 days interval not 25th day of the month.
Oh I didn’t realize Cron won’t allow a value higher than 7 for the increment of days. I’m not sure if Orchestrator will allow what you’re trying to do. What about just having the process run every day, and at the very beginning of the process check if it’s the 25th day. If it’s not, just exit out without doing anything.