<?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: Need help on getting tickets not updated for 5 business days in Developer forum</title>
    <link>https://www.servicenow.com/community/developer-forum/need-help-on-getting-tickets-not-updated-for-5-business-days/m-p/2109043#M765969</link>
    <description>&lt;P&gt;Hi Shaik,&lt;/P&gt;
&lt;P&gt;try this script below; you will have to iterate over all incident records&lt;/P&gt;
&lt;P&gt;that could be a limitation&lt;/P&gt;
&lt;PRE class="language-markup"&gt;&lt;CODE&gt;var incident = new GlideRecord('incident');
incident.addActiveQuery();
incident.query();

while(incident.next()){

var updatedTime = incident.sys_updated_on;

var days = 5;

var dur = new GlideDuration(60*60*24*days*1000);

// paste the sys_id of the 8*5 weekday schedule excluding holidays and weekends

var schedule = new GlideSchedule('090eecae0a0a0b260077e1dfa71da828'); 

var finalTime = schedule.add(updatedTime, dur,'');

var updatedGdt = new GlideDateTime(updatedTime);

var finalTimeGdt = new GlideDateTime(finalTime);

// if the date/time after adding 5 business days is greater than updated time

if(finalTimeGdt &amp;gt; updatedGdt){
gs.eventQueue('my.event', current, gr.assigned_to, gr.assigned_to.manager);
}

}
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Mark &lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt; Correct if this solves your issue and also mark &lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt; Helpful if you find my response worthy based on the impact.&lt;BR /&gt;Thanks&lt;BR /&gt;Ankur&lt;/P&gt;</description>
    <pubDate>Thu, 09 Jan 2020 05:58:58 GMT</pubDate>
    <dc:creator>Ankur Bawiskar</dc:creator>
    <dc:date>2020-01-09T05:58:58Z</dc:date>
    <item>
      <title>Need help on getting tickets not updated for 5 business days</title>
      <link>https://www.servicenow.com/community/developer-forum/need-help-on-getting-tickets-not-updated-for-5-business-days/m-p/2109036#M765962</link>
      <description>&lt;P class="ng-scope"&gt;Hi,&lt;/P&gt;
&lt;P class="ng-scope"&gt;we have a requirement where users who not updated incident assigned to them past 5 business days i want to send a notification to the assigned to &amp;amp; assingned to manager&lt;/P&gt;
&lt;P class="ng-scope"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="ng-scope"&gt;For that i think i need to write a Scheudule job but can anyone please help me with the code to exclude the holidays &amp;amp; weekends ?&lt;/P&gt;
&lt;P class="ng-scope"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="ng-scope"&gt;Below is the script which is working for 5 days but not for &lt;STRONG&gt;bsuiness days&lt;/STRONG&gt;&lt;/P&gt;
&lt;P class="ng-scope"&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE class="language-javascript"&gt;&lt;CODE&gt;var gr = new GlideRecord('incident');
gr.addEncodedQuery('active=true^sys_updated_onRELATIVELE@dayofweek@ago@3');
gr.query();
while(gr.next())
{

gs.eventQueue('my.event', current, gr.assigned_to, gr.assigned_to.manager);

}&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P class="ng-scope"&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jan 2020 04:11:14 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/need-help-on-getting-tickets-not-updated-for-5-business-days/m-p/2109036#M765962</guid>
      <dc:creator>shaik_irfan</dc:creator>
      <dc:date>2020-01-09T04:11:14Z</dc:date>
    </item>
    <item>
      <title>Re: Need help on getting tickets not updated for 5 business days</title>
      <link>https://www.servicenow.com/community/developer-forum/need-help-on-getting-tickets-not-updated-for-5-business-days/m-p/2109037#M765963</link>
      <description>&lt;P&gt;Hello Shaik,&lt;/P&gt;
&lt;P&gt;You can use a Schedule here.&lt;/P&gt;
&lt;P&gt;Create a new file of Schedule type, add holidays as schedule entries.&lt;/P&gt;
&lt;P&gt;When it is done, you can query the global Schedule table, where "name" is your schedule name. Then, if a given day is within the schedule (checked by .isInSchedule call on GlideSchedule object), it is a holiday and you need to choose a different day.&lt;/P&gt;
&lt;P&gt;I hope it helps.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jan 2020 04:36:14 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/need-help-on-getting-tickets-not-updated-for-5-business-days/m-p/2109037#M765963</guid>
      <dc:creator>JaanisK</dc:creator>
      <dc:date>2020-01-09T04:36:14Z</dc:date>
    </item>
    <item>
      <title>Re: Need help on getting tickets not updated for 5 business days</title>
      <link>https://www.servicenow.com/community/developer-forum/need-help-on-getting-tickets-not-updated-for-5-business-days/m-p/2109038#M765964</link>
      <description>Hi, if you used a repeating OLA commitment you could trigger notifications on breach and also utilise the data for reporting on update frequency, driving improved client services and better user practice/ process. Even better it's all simple OOB functionality.</description>
      <pubDate>Thu, 09 Jan 2020 04:36:51 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/need-help-on-getting-tickets-not-updated-for-5-business-days/m-p/2109038#M765964</guid>
      <dc:creator>Tony Chatfield1</dc:creator>
      <dc:date>2020-01-09T04:36:51Z</dc:date>
    </item>
    <item>
      <title>Re: Need help on getting tickets not updated for 5 business days</title>
      <link>https://www.servicenow.com/community/developer-forum/need-help-on-getting-tickets-not-updated-for-5-business-days/m-p/2109039#M765965</link>
      <description>&lt;P&gt;Hi &lt;SN-MENTION class="sn-mention" table="live_profile" sysid="8d484066db0e9b042b6dfb651f9619c4"&gt;@JaanisK&lt;/SN-MENTION&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for the reply. I already have the OOB 8-5 weekdays schedule which i need to use can you please help me with the code to apply this&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jan 2020 05:10:15 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/need-help-on-getting-tickets-not-updated-for-5-business-days/m-p/2109039#M765965</guid>
      <dc:creator>shaik_irfan</dc:creator>
      <dc:date>2020-01-09T05:10:15Z</dc:date>
    </item>
    <item>
      <title>Re: Need help on getting tickets not updated for 5 business days</title>
      <link>https://www.servicenow.com/community/developer-forum/need-help-on-getting-tickets-not-updated-for-5-business-days/m-p/2109040#M765966</link>
      <description>&lt;P&gt;Hi tony,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I do have few more things to do with those ticket update the work notes etc thats why i am going with scheudle job&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jan 2020 05:11:22 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/need-help-on-getting-tickets-not-updated-for-5-business-days/m-p/2109040#M765966</guid>
      <dc:creator>shaik_irfan</dc:creator>
      <dc:date>2020-01-09T05:11:22Z</dc:date>
    </item>
    <item>
      <title>Re: Need help on getting tickets not updated for 5 business days</title>
      <link>https://www.servicenow.com/community/developer-forum/need-help-on-getting-tickets-not-updated-for-5-business-days/m-p/2109041#M765967</link>
      <description>&lt;P&gt;Hi Shaik,&lt;/P&gt;
&lt;P&gt;you can use schedule calculation&lt;/P&gt;
&lt;P&gt;1) get the last updated time stamp&lt;/P&gt;
&lt;P&gt;2) add 5 business days to it and get that date/time&lt;/P&gt;
&lt;P&gt;3) get the current timestamp when job run&lt;/P&gt;
&lt;P&gt;4) if current date/time is more than date/time from step 2 it means 5 business days have crossed&lt;/P&gt;
&lt;P&gt;do whatever is required&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.servicenow.com/community?id=community_blog&amp;amp;sys_id=314e26addbd0dbc01dcaf3231f961986" rel="nofollow"&gt;https://community.servicenow.com/community?id=community_blog&amp;amp;sys_id=314e26addbd0dbc01dcaf3231f961986&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Mark &lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt; Correct if this solves your issue and also mark &lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt; Helpful if you find my response worthy based on the impact.&lt;BR /&gt;Thanks&lt;BR /&gt;Ankur&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jan 2020 05:18:49 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/need-help-on-getting-tickets-not-updated-for-5-business-days/m-p/2109041#M765967</guid>
      <dc:creator>Ankur Bawiskar</dc:creator>
      <dc:date>2020-01-09T05:18:49Z</dc:date>
    </item>
    <item>
      <title>Re: Need help on getting tickets not updated for 5 business days</title>
      <link>https://www.servicenow.com/community/developer-forum/need-help-on-getting-tickets-not-updated-for-5-business-days/m-p/2109042#M765968</link>
      <description>&lt;P&gt;Hi Ankur,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you please where do we have&amp;nbsp;schedule calculation ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Currently i have written a scheduled job as shown in the thread&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jan 2020 05:49:54 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/need-help-on-getting-tickets-not-updated-for-5-business-days/m-p/2109042#M765968</guid>
      <dc:creator>shaik_irfan</dc:creator>
      <dc:date>2020-01-09T05:49:54Z</dc:date>
    </item>
    <item>
      <title>Re: Need help on getting tickets not updated for 5 business days</title>
      <link>https://www.servicenow.com/community/developer-forum/need-help-on-getting-tickets-not-updated-for-5-business-days/m-p/2109043#M765969</link>
      <description>&lt;P&gt;Hi Shaik,&lt;/P&gt;
&lt;P&gt;try this script below; you will have to iterate over all incident records&lt;/P&gt;
&lt;P&gt;that could be a limitation&lt;/P&gt;
&lt;PRE class="language-markup"&gt;&lt;CODE&gt;var incident = new GlideRecord('incident');
incident.addActiveQuery();
incident.query();

while(incident.next()){

var updatedTime = incident.sys_updated_on;

var days = 5;

var dur = new GlideDuration(60*60*24*days*1000);

// paste the sys_id of the 8*5 weekday schedule excluding holidays and weekends

var schedule = new GlideSchedule('090eecae0a0a0b260077e1dfa71da828'); 

var finalTime = schedule.add(updatedTime, dur,'');

var updatedGdt = new GlideDateTime(updatedTime);

var finalTimeGdt = new GlideDateTime(finalTime);

// if the date/time after adding 5 business days is greater than updated time

if(finalTimeGdt &amp;gt; updatedGdt){
gs.eventQueue('my.event', current, gr.assigned_to, gr.assigned_to.manager);
}

}
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Mark &lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt; Correct if this solves your issue and also mark &lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt; Helpful if you find my response worthy based on the impact.&lt;BR /&gt;Thanks&lt;BR /&gt;Ankur&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jan 2020 05:58:58 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/need-help-on-getting-tickets-not-updated-for-5-business-days/m-p/2109043#M765969</guid>
      <dc:creator>Ankur Bawiskar</dc:creator>
      <dc:date>2020-01-09T05:58:58Z</dc:date>
    </item>
    <item>
      <title>Re: Need help on getting tickets not updated for 5 business days</title>
      <link>https://www.servicenow.com/community/developer-forum/need-help-on-getting-tickets-not-updated-for-5-business-days/m-p/2109044#M765970</link>
      <description>&lt;P&gt;&lt;SN-MENTION class="sn-mention" table="live_profile" sysid="19525629dbd81fc09c9ffb651f961989"&gt;@Ankur Bawiskar&lt;/SN-MENTION&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;One question it means it sends an email for the tickets which are not updated on or before 5 business days.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jan 2020 06:41:50 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/need-help-on-getting-tickets-not-updated-for-5-business-days/m-p/2109044#M765970</guid>
      <dc:creator>shaik_irfan</dc:creator>
      <dc:date>2020-01-09T06:41:50Z</dc:date>
    </item>
    <item>
      <title>Re: Need help on getting tickets not updated for 5 business days</title>
      <link>https://www.servicenow.com/community/developer-forum/need-help-on-getting-tickets-not-updated-for-5-business-days/m-p/2109045#M765971</link>
      <description>&lt;P&gt;Hi Shaik,&lt;/P&gt;
&lt;P&gt;it checks those incidents which were updated 5 business days ago.&lt;/P&gt;
&lt;P&gt;this is what is required right? any incident which has not been updated in last 5 business day&lt;/P&gt;
&lt;P&gt;Mark &lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt; Correct if this solves your issue and also mark &lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt; Helpful if you find my response worthy based on the impact.&lt;BR /&gt;Thanks&lt;BR /&gt;Ankur&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jan 2020 07:11:25 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/need-help-on-getting-tickets-not-updated-for-5-business-days/m-p/2109045#M765971</guid>
      <dc:creator>Ankur Bawiskar</dc:creator>
      <dc:date>2020-01-09T07:11:25Z</dc:date>
    </item>
    <item>
      <title>Re: Need help on getting tickets not updated for 5 business days</title>
      <link>https://www.servicenow.com/community/developer-forum/need-help-on-getting-tickets-not-updated-for-5-business-days/m-p/2109046#M765972</link>
      <description>&lt;P&gt;Hi Shaik,&lt;/P&gt;
&lt;P&gt;Any update on this?&lt;BR /&gt;Can you mark my answer as &lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt; correct, &lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt; helpful if you were able to achieve the requirement. This helps in removing this question from unanswered list and helps users to learn from your thread. Thanks in advance.&lt;BR /&gt; &lt;BR /&gt;Regards&lt;BR /&gt;Ankur&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jan 2020 15:04:22 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/need-help-on-getting-tickets-not-updated-for-5-business-days/m-p/2109046#M765972</guid>
      <dc:creator>Ankur Bawiskar</dc:creator>
      <dc:date>2020-01-10T15:04:22Z</dc:date>
    </item>
    <item>
      <title>Re: Need help on getting tickets not updated for 5 business days</title>
      <link>https://www.servicenow.com/community/developer-forum/need-help-on-getting-tickets-not-updated-for-5-business-days/m-p/2109047#M765973</link>
      <description>&lt;P&gt;Hi Ankur,&lt;/P&gt;
&lt;P&gt;I have a requirement to send notification if incident is created 1 day ago and not assigned to any body.&lt;/P&gt;
&lt;P&gt;I used your above mentioned code however it is not running after the glide schedule part.&lt;/P&gt;
&lt;P&gt;Can you please check and suggest if i am doing something incorrect.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;var INC = new GlideRecord('incident');&lt;BR /&gt;INC.addEncodedQuery('active=true^assigned_toISEMPTY');&lt;BR /&gt;INC.query();&lt;/P&gt;
&lt;P&gt;while(INC.next()){&lt;/P&gt;
&lt;P&gt;var updatedTime = INC.opened_at;&lt;BR /&gt; var ID = INC.sys_id;&lt;/P&gt;
&lt;P&gt;var days = 1;&lt;/P&gt;
&lt;P&gt;var dur = new GlideDuration(60*60*24*days*1000);&lt;BR /&gt; gs.log('Pooja Schedule' + updatedTime + ID);&lt;/P&gt;
&lt;P&gt;// paste the sys_id of the 8*5 weekday schedule excluding holidays and weekends&lt;/P&gt;
&lt;P&gt;var schedule = new GlideSchedule('a60f9281dbbc6300c53e3caf9d961945');&lt;/P&gt;
&lt;P&gt;var finalTime = schedule.add(updatedTime, dur,'');&lt;BR /&gt;&lt;BR /&gt;var updatedGdt = new GlideDateTime(updatedTime);&lt;/P&gt;
&lt;P&gt;var finalTimeGdt = new GlideDateTime(finalTime);&lt;/P&gt;
&lt;P&gt;// if the date/time after adding 5 business days is greater than updated time&lt;/P&gt;
&lt;P&gt;if(finalTimeGdt &amp;gt; updatedGdt){&lt;BR /&gt;gs.eventQueue('my.event', current, gr.assigned_to, gr.assigned_to.manager);&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;}&lt;/P&gt;</description>
      <pubDate>Thu, 20 May 2021 11:50:16 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/need-help-on-getting-tickets-not-updated-for-5-business-days/m-p/2109047#M765973</guid>
      <dc:creator>User270223</dc:creator>
      <dc:date>2021-05-20T11:50:16Z</dc:date>
    </item>
    <item>
      <title>Re: Need help on getting tickets not updated for 5 business days</title>
      <link>https://www.servicenow.com/community/developer-forum/need-help-on-getting-tickets-not-updated-for-5-business-days/m-p/2567303#M999145</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/265966"&gt;@Ankur Bawiskar&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I checked the above script and trying to replicate with Procurement Case.I have written a script include on global with accessibility from all scopes,however&amp;nbsp; receiving the following error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can't find method com.glide.schedules.Schedule.add(java.lang.String,com.glide.glideobject.GlideDuration,string). (sys_script_include.06b6a932977e69505b237886f053afe0.script; line 41) in:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;getLastUpdatedindays: function() {&lt;BR /&gt;var pcrArr = [];&lt;BR /&gt;var pcGr = new GlideRecord('sn_spend_psd_procurement_request');&lt;BR /&gt;pcGr.addEncodedQuery('active=true^state=80');&lt;BR /&gt;pcGr.query();&lt;BR /&gt;while (pcGr.next()) {&lt;BR /&gt;gs.log('pcGr number '+pcGr.getValue('number'));&lt;BR /&gt;var updatedTime = pcGr.sys_updated_on;&lt;BR /&gt;gs.log('updatedTime '+updatedTime);&lt;BR /&gt;var days = 3;&lt;BR /&gt;var dur = new GlideDuration(60 * 60 * 24 * days * 1000);&lt;BR /&gt;// paste the sys_id of the 8*5 weekday schedule excluding holidays and weekends&lt;BR /&gt;&lt;BR /&gt;var sched;&lt;BR /&gt;var grSchedule = new GlideRecord('cmn_schedule');&lt;BR /&gt;grSchedule.addQuery('name','08:30-17:30 Mon-Fri');&lt;BR /&gt;grSchedule.query();&lt;BR /&gt;while (grSchedule.next()) {&lt;BR /&gt;sched = new GlideSchedule();&lt;BR /&gt;sched.load(grSchedule.sys_id);&lt;BR /&gt;//var schedule = new GlideSchedule('dcc907c0db2c77005bcb24828a9619ad');&lt;BR /&gt;var finalTime = sched.add(updatedTime, dur);&lt;BR /&gt;var updatedGdt = new GlideDateTime(updatedTime);&lt;BR /&gt;var finalTimeGdt = new GlideDateTime(finalTime);&lt;/P&gt;&lt;P&gt;// if the date/time after adding 5 business days is greater than updated time&lt;/P&gt;&lt;P&gt;if (finalTimeGdt &amp;gt; updatedGdt) {&lt;BR /&gt;&lt;BR /&gt;pcrArr.push(pcGr.getValue('sys_id')+'');&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;}&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;return pcrArr.toString();&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please note, even by using the exact script that you posted here ,albeit different schedule sys_id&amp;nbsp; I am facing the same mentioned error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kindly note I need this for reporting.&lt;/P&gt;&lt;P&gt;Any responses on this would be highly appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sri&lt;/P&gt;</description>
      <pubDate>Sat, 20 May 2023 16:24:23 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/need-help-on-getting-tickets-not-updated-for-5-business-days/m-p/2567303#M999145</guid>
      <dc:creator>Sri13</dc:creator>
      <dc:date>2023-05-20T16:24:23Z</dc:date>
    </item>
  </channel>
</rss>

