- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
Hello community,
My requirement is to execute scheduled job to trigger email notifications. Want to execute scheduled job daily 3.00 am On US/eastern timezone, but scheduled job should run from 15 oct.
Following conditions I tried:
1. Set run as daily and set time zone is/eastern and time 3 am but there is no option to set start date.
2. Set run as periodically, set repeat interval 1 day and starting date 7 oct but there is no option to select timezone
Could you please help me to solve this problem.
Thank you!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
Hi @tanvipalkar ,
You can set "Run as tz" to /eastern so that it runs in the eastern timezone.
you can set the
- Set the "Next action" field to the desired future date and time. This tells ServiceNow when to run the job next.OR
- By using script condition
var answer = false;
var startDate = new GlideDate("2025-10-15");
var now = new GlideDate();
if(now.getDisplayValue() >=startDate..getDisplayValue())
{
answer = true;
}
answer;
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
Hi @tanvipalkar ,
You can set "Run as tz" to /eastern so that it runs in the eastern timezone.
you can set the
- Set the "Next action" field to the desired future date and time. This tells ServiceNow when to run the job next.OR
- By using script condition
var answer = false;
var startDate = new GlideDate("2025-10-15");
var now = new GlideDate();
if(now.getDisplayValue() >=startDate..getDisplayValue())
{
answer = true;
}
answer;
