Schedule Reports for certain days of the week
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-19-2014 06:04 AM
How do you schedule a report to run on Monday thru Thursday only and not Friday?
- Labels:
-
Service Mapping
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-19-2014 07:29 AM
You should be able to click on "Conditional" flag and setup.
I believe, the link below explains what you are looking for:
If you don't want to mess with the conditional reporting, you could schedule a weekly report each for Monday, Tuesday, Wednesday and Thursday.
hope this helps:-)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-21-2022 05:08 AM
The link provided above is not working, it just takes to home page of community. 😑
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-21-2022 05:13 AM - edited ‎11-21-2022 05:19 AM
Hello @jmbrake ,
you can use this script in your condition script to avoid running it on Friday
Check the conditional check box and paste the below script in condition field
var answer = false;
var date = new GlideDateTime();
// do not run on 5-friday .
if(date.getDayOfWeekUTC() ==5){
answer =false;
}
else{
answer=true;
}
Hope this helps
Mark my answer correct if this helps you
Thanks