Notification to trigger on every 30,60,90 days
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-09-2022 10:33 PM
Hello everyone ,I want to trigger notification on every 30,60,90 days from start date
Can anyone help me on this>
Thanks & Regards,
Rohini Vibhute

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-09-2022 10:46 PM
Hello,
Check these out
Regards,
Musab
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-09-2022 10:48 PM
Hi, there are a number of ways you can deliver this behavior.
Perhaps you can explain your business drives\use case, so that the community can better understand your requirements and provide the most appropriate solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-10-2022 01:30 AM
Hello Tony
Below is business case
Update the automated workflow that sends a notification every day for 7 days on change in create/submit with start date in the past to send on the 30th calendar day past the start date, 60th calendar day past the start date, and 90th calendar day past the start date. The Recipient stays the same, as the change owner. The notification should be visible in the activity tab as it is today. |
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-10-2022 08:05 AM
I can see you are dealing with CHANGES, then to start with, I would NOT touch the change workflow for this purpose.
You can create an event called for example "change.owner.notification".
Now it is a matter of having a notification that is triggered by this event, like the out of the box "Change notification": /sysevent_email_action.do?sys_id=bddf01d7c61122aa00e83c973b1f8c82
This event will have parm1 as the change_owner.
A daily scheduled job could could be sensing the 4 scenarios you proposed on active changes:
- less than 7 days from change creation: send the event
- exactly 30 days from change creation: send the event
- exactly 60 days from change creation: send the event
- exactly 90 days from change creation: send the event
It will do this every day since many different changes will have different creation dates.
If I helped you with your case, please click the Thumb Icon and mark as Correct.