Orchestrator Trigger Query

Hi all,

I need the Jobs which are running to be stopped only on month’s last date in a particular time frame (For eg:- From 12AM of last date of month to 12PM of first date of next month).

Kindly requesting thought over this. @Palaniyappan

Thanks!

hi,

You can declare the days you don’t want to trigger jobs as non-working in the calendar.

As for stopping jobs already triggered you can have a condition in your code which checks the date & time and based on the criteria stops the job or you can use orchestrator http request to fetch running jobs and then issuing a stop request to those jobs

Alternatively @Rakesh_Sampath you can use cron expression in your trigger to start a simple job at the end of the month which would consist of get jobs and stop job activities. Your workflow could be structured like this. This can stop the current ongoing jobs also in the same workflow you can postpone any queue items you have to the required time so jobs are not triggered again.

You can also use orchestrator http request activity to achieve similar result.

Let me know if you have any questions.