<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>question Re: I want to send approval reminder for RITMs for a particular catalog item in ServiceNow AI Platform forum</title>
    <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/i-want-to-send-approval-reminder-for-ritms-for-a-particular/m-p/3304666#M204192</link>
    <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/232068"&gt;@MohammedYaseen&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;This can be handled by customizing your schedule and script logic a bit more.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-start="666" data-end="709"&gt;&lt;STRONG data-start="666" data-end="708"&gt;1] Set up a custom holiday-aware schedule&lt;/STRONG&gt;:&lt;/P&gt;
&lt;UL data-start="713" data-end="1024"&gt;
&lt;LI data-start="713" data-end="809"&gt;
&lt;P data-start="715" data-end="809"&gt;Go to &lt;STRONG data-start="721" data-end="753"&gt;System Scheduler &amp;gt; Schedules&lt;/STRONG&gt; and create a new schedule (e.g., &lt;STRONG&gt;India Business Days&lt;/STRONG&gt;)&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="813" data-end="842"&gt;
&lt;P data-start="815" data-end="842"&gt;Set working hours (Mon–Fri)&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="846" data-end="944"&gt;
&lt;P data-start="848" data-end="944"&gt;Under the &lt;STRONG data-start="858" data-end="877"&gt;Child Schedules&lt;/STRONG&gt; related list, link your &lt;STRONG data-start="902" data-end="922"&gt;Holiday Schedule&lt;/STRONG&gt; with &lt;STRONG data-start="928" data-end="944"&gt;Include type &amp;amp;&amp;nbsp;&lt;/STRONG&gt;This way, holidays are excluded.&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;STRONG&gt;2]&amp;nbsp;Update the Flow Designer script:&lt;/STRONG&gt;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;var schedule = new GlideSchedule('your_schedule_sys_id'); // Replace with your custom schedule’s sys_id
var gdt = new GlideDateTime();
var start = new GlideDateTime(gdt.getYear() + '-' + (gdt.getMonth() + 1) + '-01 00:00:00');
var workingDayCount = 0;

while (start.before(gdt)) {
    if (schedule.isInSchedule(start)) {
        workingDayCount++;
    }
    start.addDaysLocalTime(1);
}

if (workingDayCount &amp;gt;= 10 &amp;amp;&amp;amp; workingDayCount &amp;lt;= 13) {
    return true;
}
return false;
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I haven’t tested this exact script myself yet, but it looks fine and should work as expected. Give it a try and see how it goes.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;span class="lia-unicode-emoji" title=":small_blue_diamond:"&gt;🔹&lt;/span&gt;&lt;STRONG&gt;&lt;EM&gt; Please mark &lt;/EM&gt;&lt;/STRONG&gt;&lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt;&lt;STRONG&gt;&lt;EM&gt; Correct if this solves your query, and &lt;/EM&gt;&lt;/STRONG&gt;&lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt;&lt;STRONG&gt;&lt;EM&gt; Helpful if you found the response valuable.&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;BR /&gt;Aniket Chavan&lt;BR /&gt;&lt;span class="lia-unicode-emoji" title=":trophy:"&gt;🏆&lt;/span&gt;&lt;EM&gt; ServiceNow MVP 2025 | &lt;/EM&gt;&lt;span class="lia-unicode-emoji" title=":glowing_star:"&gt;🌟&lt;/span&gt;&lt;EM&gt; ServiceNow Rising Star 2024&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 30 Jun 2025 13:08:09 GMT</pubDate>
    <dc:creator>AniketC85155510</dc:creator>
    <dc:date>2025-06-30T13:08:09Z</dc:date>
    <item>
      <title>I want to send approval reminder for RITMs for a particular catalog item</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/i-want-to-send-approval-reminder-for-ritms-for-a-particular/m-p/3301021#M204143</link>
      <description>&lt;P&gt;Hi Team,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to send approval reminder for particular catalog item on the 10th,11th,12th and 13th of the month&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can we achieve this using flow designer?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Yaseen&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jun 2025 09:29:06 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/i-want-to-send-approval-reminder-for-ritms-for-a-particular/m-p/3301021#M204143</guid>
      <dc:creator>MohammedYaseen</dc:creator>
      <dc:date>2025-06-26T09:29:06Z</dc:date>
    </item>
    <item>
      <title>Re: I want to send approval reminder for RITMs for a particular catalog item</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/i-want-to-send-approval-reminder-for-ritms-for-a-particular/m-p/3301107#M204144</link>
      <description>&lt;P&gt;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/232068"&gt;@MohammedYaseen&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;yes it's possible.&lt;/P&gt;
&lt;P&gt;check this and enhance for your requirement&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.servicenow.com/community/servicenow-ai-platform-blog/approval-reminder-using-flow-designer/ba-p/2333004" target="_blank" rel="noopener"&gt;Approval Reminder Using Flow Designer&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If my response helped please mark it correct and close the thread so that it benefits future readers.&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jun 2025 10:08:51 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/i-want-to-send-approval-reminder-for-ritms-for-a-particular/m-p/3301107#M204144</guid>
      <dc:creator>Ankur Bawiskar</dc:creator>
      <dc:date>2025-06-26T10:08:51Z</dc:date>
    </item>
    <item>
      <title>Re: I want to send approval reminder for RITMs for a particular catalog item</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/i-want-to-send-approval-reminder-for-ritms-for-a-particular/m-p/3301209#M204145</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/232068"&gt;@MohammedYaseen&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P data-start="213" data-end="243"&gt;Yes, it's definitely possible!&lt;/P&gt;
&lt;P data-start="213" data-end="243"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-start="245" data-end="405"&gt;You can create a &lt;STRONG data-start="262" data-end="280"&gt;Scheduled Flow&lt;/STRONG&gt; that runs &lt;STRONG data-start="291" data-end="309"&gt;daily at 12 AM&lt;/STRONG&gt;, and then control the logic so it proceeds only on the 10th, 11th, 12th, and 13th of the month.&lt;/P&gt;
&lt;P data-start="245" data-end="405"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-start="245" data-end="405"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="AniketChavan_0-1750933498162.png" style="width: 529px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/451154i04B6198E98A83A9F/image-dimensions/529x246?v=v2" width="529" height="246" role="button" title="AniketChavan_0-1750933498162.png" alt="AniketChavan_0-1750933498162.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P data-start="407" data-end="445"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-start="407" data-end="445"&gt;Here's how I tested it in my instance:&lt;/P&gt;
&lt;UL data-start="447" data-end="713"&gt;
&lt;LI data-start="447" data-end="527"&gt;
&lt;P data-start="449" data-end="527"&gt;I created a &lt;STRONG data-start="461" data-end="478"&gt;flow variable&lt;/STRONG&gt; of type &lt;STRONG data-start="487" data-end="501"&gt;True/False&lt;/STRONG&gt; called &lt;CODE data-start="509" data-end="526"&gt;Reminder Day&lt;/CODE&gt;.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="528" data-end="713"&gt;
&lt;P data-start="530" data-end="713"&gt;In the very first step, I used &lt;STRONG data-start="561" data-end="584"&gt;"Set Flow Variable"&lt;/STRONG&gt; and added a script to check if the current day is one of the 10th, 11th, 12th, or 13th. If yes, it returns &lt;CODE data-start="692" data-end="698"&gt;true&lt;/CODE&gt;, else &lt;CODE data-start="705" data-end="712"&gt;false&lt;/CODE&gt;.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="528" data-end="713"&gt;&lt;LI-CODE lang="javascript"&gt;var gdt = new GlideDateTime();
var today = parseInt(gdt.getDayOfMonthLocalTime());

if (today === 10 || today === 11 || today === 12 || today === 13) {
    return true;
}
return false;&lt;/LI-CODE&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;UL data-start="858" data-end="1450"&gt;
&lt;LI data-start="858" data-end="968"&gt;
&lt;P data-start="860" data-end="968"&gt;Then I added an &lt;STRONG data-start="876" data-end="892"&gt;If condition&lt;/STRONG&gt; to check if &lt;CODE data-start="509" data-end="526"&gt;Reminder Day&lt;/CODE&gt;is true. If it’s false, the flow stops there.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="969" data-end="1290"&gt;
&lt;P data-start="971" data-end="1072"&gt;If true, the flow continues — I used a &lt;STRONG data-start="1010" data-end="1028"&gt;Lookup Records&lt;/STRONG&gt; action on the &lt;CODE data-start="1043" data-end="1065"&gt;sysapproval_approver&lt;/CODE&gt; table.&lt;/P&gt;
&lt;UL data-start="1077" data-end="1290"&gt;
&lt;LI data-start="1077" data-end="1114"&gt;
&lt;P data-start="1079" data-end="1114"&gt;Condition 1: &lt;CODE data-start="1092" data-end="1099"&gt;state&lt;/CODE&gt; is &lt;CODE data-start="1103" data-end="1114"&gt;requested&lt;/CODE&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="1119" data-end="1290"&gt;
&lt;P data-start="1121" data-end="1290"&gt;Condition 2: dot-walked to &lt;CODE data-start="1148" data-end="1194"&gt;Approval for-&amp;gt; request_item -&amp;gt; cat_item&lt;/CODE&gt; and selected the specific catalog item name I wanted to target (you can adjust this as needed).&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;LI data-start="1291" data-end="1450"&gt;
&lt;P data-start="1293" data-end="1450"&gt;After that, I used a &lt;STRONG data-start="1314" data-end="1326"&gt;For Each&lt;/STRONG&gt; loop on those lookup records we did and directly added a &lt;STRONG data-start="1353" data-end="1367"&gt;Send Email&lt;/STRONG&gt; action inside it — since all necessary checks were already done before this point.&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="AniketChavan_0-1750936459308.png" style="width: 628px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/451177i66E7215D4366B9CF/image-dimensions/628x266?v=v2" width="628" height="266" role="button" title="AniketChavan_0-1750936459308.png" alt="AniketChavan_0-1750936459308.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="AniketChavan_1-1750936483001.png" style="width: 508px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/451178i34776619E079F4A1/image-dimensions/508x264?v=v2" width="508" height="264" role="button" title="AniketChavan_1-1750936483001.png" alt="AniketChavan_1-1750936483001.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="AniketChavan_2-1750936526496.png" style="width: 580px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/451179iE5F7393F9E95768D/image-dimensions/580x297?v=v2" width="580" height="297" role="button" title="AniketChavan_2-1750936526496.png" alt="AniketChavan_2-1750936526496.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="AniketChavan_3-1750936560508.png" style="width: 597px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/451180i2E1C1CFCD04B1377/image-dimensions/597x294?v=v2" width="597" height="294" role="button" title="AniketChavan_3-1750936560508.png" alt="AniketChavan_3-1750936560508.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="AniketChavan_4-1750936641289.png" style="width: 603px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/451182iAEB609B51AF1C4C4/image-dimensions/603x318?v=v2" width="603" height="318" role="button" title="AniketChavan_4-1750936641289.png" alt="AniketChavan_4-1750936641289.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-start="1452" data-end="1569"&gt;It worked exactly as you described — sending reminders only for the right dates and the right catalog item approvals.&lt;/P&gt;
&lt;P data-start="1571" data-end="1632"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-start="1571" data-end="1632"&gt;Let me know if you get stuck anywhere, happy to help further!&lt;/P&gt;
&lt;P data-start="1571" data-end="1632"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Please Mark &lt;/STRONG&gt;&lt;/EM&gt;&lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt;&lt;EM&gt;&lt;STRONG&gt;Correct if this solves your query and also mark &lt;/STRONG&gt;&lt;/EM&gt;&lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt;&lt;EM&gt;&lt;STRONG&gt;Helpful if you find my response worthy based on the impact.&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Aniket&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jun 2025 11:18:54 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/i-want-to-send-approval-reminder-for-ritms-for-a-particular/m-p/3301209#M204145</guid>
      <dc:creator>AniketC85155510</dc:creator>
      <dc:date>2025-06-26T11:18:54Z</dc:date>
    </item>
    <item>
      <title>Re: I want to send approval reminder for RITMs for a particular catalog item</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/i-want-to-send-approval-reminder-for-ritms-for-a-particular/m-p/3302074#M204166</link>
      <description>&lt;P&gt;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/232068"&gt;@MohammedYaseen&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope you are doing good.&lt;/P&gt;
&lt;P&gt;Did my reply answer your question?&lt;/P&gt;
&lt;P&gt;If my response helped please mark it correct and close the thread so that it benefits future readers.&lt;/P&gt;</description>
      <pubDate>Fri, 27 Jun 2025 03:23:25 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/i-want-to-send-approval-reminder-for-ritms-for-a-particular/m-p/3302074#M204166</guid>
      <dc:creator>Ankur Bawiskar</dc:creator>
      <dc:date>2025-06-27T03:23:25Z</dc:date>
    </item>
    <item>
      <title>Re: I want to send approval reminder for RITMs for a particular catalog item</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/i-want-to-send-approval-reminder-for-ritms-for-a-particular/m-p/3302220#M204169</link>
      <description>&lt;P&gt;Thanks alot Ankur&lt;/P&gt;</description>
      <pubDate>Fri, 27 Jun 2025 07:03:41 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/i-want-to-send-approval-reminder-for-ritms-for-a-particular/m-p/3302220#M204169</guid>
      <dc:creator>MohammedYaseen</dc:creator>
      <dc:date>2025-06-27T07:03:41Z</dc:date>
    </item>
    <item>
      <title>Re: I want to send approval reminder for RITMs for a particular catalog item</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/i-want-to-send-approval-reminder-for-ritms-for-a-particular/m-p/3304344#M204190</link>
      <description>&lt;P&gt;Thank you Aniket for sharing . We can get the condition working.&lt;/P&gt;&lt;P&gt;Is there a way we can use a specific schedule (Geography based) where it triggers excluding Weekends and holidays.&amp;nbsp;&lt;/P&gt;&lt;P&gt;For eg.,&amp;nbsp; for July 2025, 10th working day is 14th July, excluding weekends and no holidays.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Jun 2025 10:04:31 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/i-want-to-send-approval-reminder-for-ritms-for-a-particular/m-p/3304344#M204190</guid>
      <dc:creator>MohammedYaseen</dc:creator>
      <dc:date>2025-06-30T10:04:31Z</dc:date>
    </item>
    <item>
      <title>Re: I want to send approval reminder for RITMs for a particular catalog item</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/i-want-to-send-approval-reminder-for-ritms-for-a-particular/m-p/3304573#M204191</link>
      <description>&lt;P&gt;&lt;A href="https://www.servicenow.com/docs/bundle/vancouver-platform-administration/page/administer/time/task/t_CreateAHolidaySchedMultiRegions.html" target="_blank"&gt;https://www.servicenow.com/docs/bundle/vancouver-platform-administration/page/administer/time/task/t_CreateAHolidaySchedMultiRegions.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Jun 2025 12:28:22 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/i-want-to-send-approval-reminder-for-ritms-for-a-particular/m-p/3304573#M204191</guid>
      <dc:creator>WilliansM</dc:creator>
      <dc:date>2025-06-30T12:28:22Z</dc:date>
    </item>
    <item>
      <title>Re: I want to send approval reminder for RITMs for a particular catalog item</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/i-want-to-send-approval-reminder-for-ritms-for-a-particular/m-p/3304666#M204192</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/232068"&gt;@MohammedYaseen&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;This can be handled by customizing your schedule and script logic a bit more.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-start="666" data-end="709"&gt;&lt;STRONG data-start="666" data-end="708"&gt;1] Set up a custom holiday-aware schedule&lt;/STRONG&gt;:&lt;/P&gt;
&lt;UL data-start="713" data-end="1024"&gt;
&lt;LI data-start="713" data-end="809"&gt;
&lt;P data-start="715" data-end="809"&gt;Go to &lt;STRONG data-start="721" data-end="753"&gt;System Scheduler &amp;gt; Schedules&lt;/STRONG&gt; and create a new schedule (e.g., &lt;STRONG&gt;India Business Days&lt;/STRONG&gt;)&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="813" data-end="842"&gt;
&lt;P data-start="815" data-end="842"&gt;Set working hours (Mon–Fri)&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="846" data-end="944"&gt;
&lt;P data-start="848" data-end="944"&gt;Under the &lt;STRONG data-start="858" data-end="877"&gt;Child Schedules&lt;/STRONG&gt; related list, link your &lt;STRONG data-start="902" data-end="922"&gt;Holiday Schedule&lt;/STRONG&gt; with &lt;STRONG data-start="928" data-end="944"&gt;Include type &amp;amp;&amp;nbsp;&lt;/STRONG&gt;This way, holidays are excluded.&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;STRONG&gt;2]&amp;nbsp;Update the Flow Designer script:&lt;/STRONG&gt;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;var schedule = new GlideSchedule('your_schedule_sys_id'); // Replace with your custom schedule’s sys_id
var gdt = new GlideDateTime();
var start = new GlideDateTime(gdt.getYear() + '-' + (gdt.getMonth() + 1) + '-01 00:00:00');
var workingDayCount = 0;

while (start.before(gdt)) {
    if (schedule.isInSchedule(start)) {
        workingDayCount++;
    }
    start.addDaysLocalTime(1);
}

if (workingDayCount &amp;gt;= 10 &amp;amp;&amp;amp; workingDayCount &amp;lt;= 13) {
    return true;
}
return false;
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I haven’t tested this exact script myself yet, but it looks fine and should work as expected. Give it a try and see how it goes.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;span class="lia-unicode-emoji" title=":small_blue_diamond:"&gt;🔹&lt;/span&gt;&lt;STRONG&gt;&lt;EM&gt; Please mark &lt;/EM&gt;&lt;/STRONG&gt;&lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt;&lt;STRONG&gt;&lt;EM&gt; Correct if this solves your query, and &lt;/EM&gt;&lt;/STRONG&gt;&lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt;&lt;STRONG&gt;&lt;EM&gt; Helpful if you found the response valuable.&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;BR /&gt;Aniket Chavan&lt;BR /&gt;&lt;span class="lia-unicode-emoji" title=":trophy:"&gt;🏆&lt;/span&gt;&lt;EM&gt; ServiceNow MVP 2025 | &lt;/EM&gt;&lt;span class="lia-unicode-emoji" title=":glowing_star:"&gt;🌟&lt;/span&gt;&lt;EM&gt; ServiceNow Rising Star 2024&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Jun 2025 13:08:09 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/i-want-to-send-approval-reminder-for-ritms-for-a-particular/m-p/3304666#M204192</guid>
      <dc:creator>AniketC85155510</dc:creator>
      <dc:date>2025-06-30T13:08:09Z</dc:date>
    </item>
  </channel>
</rss>

