...
JobScheduler Order and Schedule's contain the "Time Element" of the scheduling. There could be two usecases
- Predefiend Days i.e. Non Working days or Holidays
- Adhoc days processing should be suppressed
To suppress execution on predefined " non-working-days " or Holidays , user can create holiday schedule and Holiday Calender for all Jobs in JobScheduler or for individual process i.e. orders/jobs , include the same in all respecticvve Orders/SchedulersSchedules.
But In some Adhoc usecases Adhoc , predefined Order/Schedule's has to be suppressed or should not execute ,but and should resume there normal execution once "suppressed" time is passed.
...
1. Original Order without "holiday/Non working days" will run every day at 08:00 AM
2. Open JOE and add
...
into order
3. Save order
Code Block | ||
---|---|---|
| ||
<?xml version="1.0" encoding="ISO-8859-1"?> <order job_chain="execute_pf" id="daily"> <run_time let_run="no"> <period single_start="08:00"/> <holidays > <holiday date="2014-05-17"/> <holiday date="2014-05-18"/> </holidays> </run_time> </order> |
...