- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-29-2010 04:38 AM
We have a few scheduled reports that are delivered to our service delivery manager daily, currently the subject / file name is the same everytime.
Is there a way to timestamp either the subject line or attachment file name?
Solved! Go to Solution.
- Labels:
-
Service Mapping
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-28-2011 03:29 PM
When configuring a Scheduled Report, the Subject line now accepts JavaScript. e.g., the following in the Subject of a scheduled report will put the current date in the resultant email (e.g., for a report of today's problems):
javascript:"Problems created on " + gs.now();
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2016 10:34 AM
I figured out the issue. Service now javascript is by default in GMT... for using user defined time, which is primarily your system time use this
javascript: "Enter text here" + gs.nowDateTime();
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-25-2016 07:49 AM
Good catch!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-24-2017 02:58 PM
Anyone know if we can do this in the title line of a standard report?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2017 10:55 AM
Yes Kim. If you are using scripting.
email.setSubject("Request Desk Task Report @" + gs.nowDateTime());
Thanks,
Malaya
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-22-2019 09:13 AM
Looking to add the value for "Previous Month, Current year", in a Bar graph Title and Subtitle.
This article is for adding a title to a scheduled report, which sends a notification. I am looking at how to do this in the actual report.