
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-15-2020 11:45 AM
We have a client who requires multiple reports periodically. I have built these reports and they are scheduled to send to the account manager as required. However, the account manager then has to upload the reports to the client's repository with a naming convention that starts with the date the report was run (YYYY-DD-MM). IE Monthly Incident Report would be 2020-15-01 Monthly Incident Report. The Account Manager is having to save each report locally with the new naming convention before he can upload them.
Is there any way I can script prefixing the report name with today's date before it is sent to the AM to save him some time?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-15-2020 12:25 PM
Take a look at below thread.
Please mark my response as correct and helpful if it helped solved your question.
-Thanks

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-15-2020 11:55 AM
Hi
It appears that you can do this by adding JavaScript to the Subject line of the Scheduled Report form. Something such as this should work:
javascript:"Problems created on " + gs.now();
Take a look at this related post:
Hope that helps!
If it did, please mark as Helpful and consider setting the reply as the Correct Answer to the question, thanks!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-15-2020 12:21 PM
Thanks for replying, but this solution adds the date to the subject line of the email, not to the report files attached to the email.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-15-2020 12:25 PM
Take a look at below thread.
Please mark my response as correct and helpful if it helped solved your question.
-Thanks

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-15-2020 12:29 PM
Thank you, that might be exactly what I need.