- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-01-2025 05:19 AM
I have the catalog item ready and I tried to create a flow to submit the RITM but cannot find a trigger that can run the flow yearly. I can select 'repeat every 365 days but I would like to provide a specific date in the year to run the flow . How can I achieve this?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-01-2025 05:46 AM
Hi @Ruchi Mehta ,
of August 1st
in that case update the condition field in the second screenshot with and give it a try
(new GlideDate().getMonth() == 8); //8 for August
after all this is what trigger the flow and end of the day it's a scheduled job
Please mark my answer as helpful/correct if it resolves your query.
Regards,
Chaitanya
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-01-2025 06:15 AM
you will have to use script to handle this.
Flow is intended for low-code, no-code
Please use daily scheduled job and use Conditional field and use Condition field
When condition becomes true scheduled job script runs
// check if today is 1st August
If my response helped please mark it correct and close the thread so that it benefits future readers.
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-01-2025 05:41 AM
1st of August Every Year
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-01-2025 06:15 AM
you will have to use script to handle this.
Flow is intended for low-code, no-code
Please use daily scheduled job and use Conditional field and use Condition field
When condition becomes true scheduled job script runs
// check if today is 1st August
If my response helped please mark it correct and close the thread so that it benefits future readers.
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-01-2025 05:38 AM
Hi @Ruchi Mehta ,
with every scheduled flow there will be a scheduled job associated to trigger the flow
goto scheduled jobs records
put name Trigger:sysID of you flow
open the scheduled job record and customize it as per you needs
use condition field for advance condition evaluation
Please mark my answer as helpful/correct if it resolves your query.
Regards,
Chaitanya
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-01-2025 05:46 AM
Hi @Ruchi Mehta ,
of August 1st
in that case update the condition field in the second screenshot with and give it a try
(new GlideDate().getMonth() == 8); //8 for August
after all this is what trigger the flow and end of the day it's a scheduled job
Please mark my answer as helpful/correct if it resolves your query.
Regards,
Chaitanya
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-01-2025 06:15 AM
I could actually select a date here . Is this enough or do I still need to put a condition?