How to schedule a process to run on specific days of the month - recurring every month?
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
29-11-18 10:36 PM
How to schedule a process to run on specific days of the month - recurring every month?
Need to schedule a process to run the 3rd,6th and 10th business day of every month respecting holidays, how is this possible?
Only option I can see is to add the 329 days of the year manually one by one to the list of holidays for a custom calendar and exclude the 36 days the process must run.
- Any suggestions ?
2 REPLIES 2
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
30-11-18 04:34 AM
Your best bet is to schedule the process to run every business day then include some process logic in your queue loading.
You would need the following logic:
Check if day is 3, 6, or 10
If yes then continue queue load
If no then exception out (Set your schedule to only run the ""work"" process if the queue loading completed)
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
30-11-18 04:41 AM
On a further note, to check if the day is the 3rd, 6th, or 10th business day you would need to use calendar logic (Count Working Days in Range)
