Email Notification for Timesheet
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-30-2024 07:56 AM
Does anyone know how the following can be achieved?
1. Time Sheet Due --> Notification needs to be sent on Fridays to remind users to complete and submit the current timesheet by the end of the time sheet period.
2. Time Sheet Overdue --> Notification needs to be sent on Mondays to users who have not submitted a timesheet for the previous period; a notification is also need to be sent to the manager with a list of Time Sheets pending submission User.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-30-2024 08:17 AM
@user0719 You can create scripted schedule jobs which will run on Friday and Mondays to send reminder notifications to the intended users. For more information please refer to https://developer.servicenow.com/dev.do#!/learn/courses/xanadu/app_store_learnv2_automatingapps_xana...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-30-2024 08:30 AM
@user0719 write a scheduled job which runs weekly on friday + for monday
in script : check which timecards are not submitted , then send a notification by firing event from script using gs.eventQueue()
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-01-2024 10:29 AM
Is there any way to do this without writing scripts if we are not familiar with coding?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-01-2024 10:43 AM
@user0719 If you do not wish to write script to send email then you can simply create a flow which triggers on a schedule and send emails as follows.
Using these two simple steps you will be able to send reminders to your users without writing a single line of code.
Please mark my response helpful and accepted solution if it addresses your question.