Scheduled Jobs... no "Yearly" option!?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-04-2011 03:17 PM
I technically need quarterly, but since that's not an option, my next best is creating four events, one each quarter, that repeat yearly. But there's no option for yearly!
Periodically 365 days would be a fine replacement, but I don't want to have to go in and fix it every four years when leap year rolls around.
Can we enable yearly? Or will I be creating an extra scheduled job that goes off every 1460 days to remind me to fix the other ones? 🙂

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-04-2011 04:21 PM
I'm not sure if it will work without the final 'answer' line or not. I know that it will work with it there...regardless of what the syntax checker tells you. Sometimes the syntax checker will give you a false alarm like that. The record should still save though and it will work with the final answer line.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-05-2016 07:02 AM
Hi,
Facing same problem, needed a scheduled script running yearly (each 31.12), I've set a monthly scheduled job and added that condition to the script:
var gdt = new GlideDateTime();
var month = gdt.getMonthLocalTime();
if (month == 12) {
}
--> you put the script in the "if".
Best Regards