<?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: GlideRecord Query within Loop Not Working in ITSM forum</title>
    <link>https://www.servicenow.com/community/itsm-forum/gliderecord-query-within-loop-not-working/m-p/740816#M312595</link>
    <description>&lt;P&gt;Try something like below:&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;getAffectedClients();&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;function getAffectedClients(){&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;var affected_clients = current.u_affected_clients.getDisplayValue(); //affected clients list&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;var array_clients = affected_clients.split(",");&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;if(array_clients.length !=0){&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;for(var count =0; count &amp;lt; array_clients.length; count++){&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;&lt;SPAN style="font-style: inherit; font-family: inherit;"&gt;&lt;STRONG&gt;getRelManagers(array_clients[count]);&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;}&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;}&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;&lt;SPAN style="font-style: inherit; font-family: inherit;"&gt;&lt;STRONG&gt;function getRelManagers(rm_name)&lt;/STRONG&gt;&lt;/SPAN&gt;{&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;var gr_rm = new GlideRecord('u_rel_mamager_list');&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;gr_rm.addQuery("u_client_name", rm_name);&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;gr_rm.query(); &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;SPAN style="font-style: inherit; font-family: inherit;"&gt;&lt;STRONG&gt;//only first iteration runs successfully&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;while (gr_rm.next()) { &amp;nbsp; &amp;nbsp; /&lt;SPAN style="font-style: inherit; font-family: inherit;"&gt;&lt;STRONG&gt;/does not iterate second time gr_rm.next returns false&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;var rel_manager = gr_rm.email.toString();&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;gs.addInfoMessage(rel_manager); &lt;SPAN style="font-style: inherit; font-family: inherit;"&gt;&lt;STRONG&gt;//prints only records of first array object&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;gs.eventQueue("affectedclients.notify", current, rm_name, rel_manager);&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;}&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;}&lt;/P&gt;&lt;BR /&gt;</description>
    <pubDate>Thu, 25 Aug 2016 15:54:18 GMT</pubDate>
    <dc:creator>tanumoy</dc:creator>
    <dc:date>2016-08-25T15:54:18Z</dc:date>
    <item>
      <title>GlideRecord Query within Loop Not Working</title>
      <link>https://www.servicenow.com/community/itsm-forum/gliderecord-query-within-loop-not-working/m-p/740812#M312591</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We have an Wrapper Function with GlideRecord Query called within a For loop. The GlideRecord Query executes for the first time. However, for subsequent iterations .next(), .has next() returns false.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestion on using a GlideRecord Query within a for loop will be highly appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;BR /&gt;Saresh&lt;/P&gt;</description>
      <pubDate>Thu, 25 Aug 2016 11:36:18 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/gliderecord-query-within-loop-not-working/m-p/740812#M312591</guid>
      <dc:creator>sareshnaroji</dc:creator>
      <dc:date>2016-08-25T11:36:18Z</dc:date>
    </item>
    <item>
      <title>Re: GlideRecord Query within Loop Not Working</title>
      <link>https://www.servicenow.com/community/itsm-forum/gliderecord-query-within-loop-not-working/m-p/740813#M312592</link>
      <description>&lt;P&gt;Could you please post your code here.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 25 Aug 2016 11:41:09 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/gliderecord-query-within-loop-not-working/m-p/740813#M312592</guid>
      <dc:creator>tanumoy</dc:creator>
      <dc:date>2016-08-25T11:41:09Z</dc:date>
    </item>
    <item>
      <title>Re: GlideRecord Query within Loop Not Working</title>
      <link>https://www.servicenow.com/community/itsm-forum/gliderecord-query-within-loop-not-working/m-p/740814#M312593</link>
      <description>&lt;P&gt;OnBefore Business Rule Insert/Update&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;getAffectedClients();&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;function getAffectedClients(){&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;var affected_clients = current.u_affected_clients.getDisplayValue(); //affected clients list&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;var array_clients = affected_clients.split(",");&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;if(array_clients.length !=0){&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;for(var count =0; count &amp;lt; array_clients.length; count++){&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;STRONG&gt;getRelManagers(array_clients[i]);&lt;/STRONG&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;}&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;}&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;STRONG&gt;function getRelManagers(rm_name)&lt;/STRONG&gt;{&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;var gr_rm = new GlideRecord('u_rel_mamager_list');&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;gr_rm.addQuery("u_client_name", rm_name);&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;gr_rm.query(); &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;STRONG&gt; //only first iteration runs successfully&lt;/STRONG&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;while (gr_rm.next()) { &amp;nbsp; &amp;nbsp; /&lt;STRONG&gt;/does not iterate second time gr_rm.next returns false&lt;/STRONG&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;var rel_manager = gr_rm.email.toString();&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;gs.addInfoMessage(rel_manager); &lt;STRONG&gt;//prints only records of first array object&lt;/STRONG&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;gs.eventQueue("affectedclients.notify", current, rm_name, rel_manager);&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;}&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;}&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 25 Aug 2016 15:14:20 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/gliderecord-query-within-loop-not-working/m-p/740814#M312593</guid>
      <dc:creator>sareshnaroji</dc:creator>
      <dc:date>2016-08-25T15:14:20Z</dc:date>
    </item>
    <item>
      <title>Re: GlideRecord Query within Loop Not Working</title>
      <link>https://www.servicenow.com/community/itsm-forum/gliderecord-query-within-loop-not-working/m-p/740815#M312594</link>
      <description>&lt;P&gt;Saresh,&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt; &amp;nbsp; Use this script&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;PRE __default_attr="javascript" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14721384305475959 jive_text_macro" data-renderedposition="92_8_1115_304" jivemacro_uid="_14721384305475959" modifiedtitle="true"&gt;&lt;P&gt;getAffectedClients();&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;function getAffectedClients(){&lt;/P&gt;&lt;BR /&gt;&lt;P&gt; &amp;nbsp; var affected_clients = current.u_affected_clients.getDisplayValue();&lt;/P&gt;&lt;BR /&gt;&lt;P&gt; &amp;nbsp; if(affected_clients.length!=0){//affected clients list&lt;/P&gt;&lt;BR /&gt;&lt;P&gt; &amp;nbsp; getRelManagers(affected_clients);&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;}&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;function getRelManagers(rm_name){&lt;/P&gt;&lt;BR /&gt;&lt;P&gt; &amp;nbsp; var gr_rm = new GlideRecord('u_rel_mamager_list');&lt;/P&gt;&lt;BR /&gt;&lt;P&gt; &amp;nbsp; gr_rm.addQuery("u_client_name",'IN', rm_name);&lt;/P&gt;&lt;BR /&gt;&lt;P&gt; &amp;nbsp; gr_rm.query(); &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; //only first iteration runs successfully&lt;/P&gt;&lt;BR /&gt;&lt;P&gt; &amp;nbsp; while (gr_rm.next()) { &amp;nbsp; //does not iterate second time gr_rm.next returns false&lt;/P&gt;&lt;BR /&gt;&lt;P&gt; &amp;nbsp; var rel_manager = gr_rm.getValue('email');&lt;/P&gt;&lt;BR /&gt;&lt;P&gt; &amp;nbsp; gs.addInfoMessage(rel_manager); //prints only records of first array object&lt;/P&gt;&lt;BR /&gt;&lt;P&gt; &amp;nbsp; gs.eventQueue("affectedclients.notify", current, rm_name, rel_manager);&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;}&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;}&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;}&lt;/P&gt;&lt;BR /&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 25 Aug 2016 15:20:32 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/gliderecord-query-within-loop-not-working/m-p/740815#M312594</guid>
      <dc:creator>Abhinay Erra</dc:creator>
      <dc:date>2016-08-25T15:20:32Z</dc:date>
    </item>
    <item>
      <title>Re: GlideRecord Query within Loop Not Working</title>
      <link>https://www.servicenow.com/community/itsm-forum/gliderecord-query-within-loop-not-working/m-p/740816#M312595</link>
      <description>&lt;P&gt;Try something like below:&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;getAffectedClients();&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;function getAffectedClients(){&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;var affected_clients = current.u_affected_clients.getDisplayValue(); //affected clients list&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;var array_clients = affected_clients.split(",");&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;if(array_clients.length !=0){&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;for(var count =0; count &amp;lt; array_clients.length; count++){&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;&lt;SPAN style="font-style: inherit; font-family: inherit;"&gt;&lt;STRONG&gt;getRelManagers(array_clients[count]);&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;}&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;}&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;&lt;SPAN style="font-style: inherit; font-family: inherit;"&gt;&lt;STRONG&gt;function getRelManagers(rm_name)&lt;/STRONG&gt;&lt;/SPAN&gt;{&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;var gr_rm = new GlideRecord('u_rel_mamager_list');&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;gr_rm.addQuery("u_client_name", rm_name);&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;gr_rm.query(); &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;SPAN style="font-style: inherit; font-family: inherit;"&gt;&lt;STRONG&gt;//only first iteration runs successfully&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;while (gr_rm.next()) { &amp;nbsp; &amp;nbsp; /&lt;SPAN style="font-style: inherit; font-family: inherit;"&gt;&lt;STRONG&gt;/does not iterate second time gr_rm.next returns false&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;var rel_manager = gr_rm.email.toString();&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;gs.addInfoMessage(rel_manager); &lt;SPAN style="font-style: inherit; font-family: inherit;"&gt;&lt;STRONG&gt;//prints only records of first array object&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;gs.eventQueue("affectedclients.notify", current, rm_name, rel_manager);&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;}&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;}&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 25 Aug 2016 15:54:18 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/gliderecord-query-within-loop-not-working/m-p/740816#M312595</guid>
      <dc:creator>tanumoy</dc:creator>
      <dc:date>2016-08-25T15:54:18Z</dc:date>
    </item>
    <item>
      <title>Re: GlideRecord Query within Loop Not Working</title>
      <link>https://www.servicenow.com/community/itsm-forum/gliderecord-query-within-loop-not-working/m-p/740817#M312596</link>
      <description>&lt;P&gt;This is incorrect. Why are you using current.rm_name?? rm_name is just a parameter passed to the function.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 25 Aug 2016 16:01:38 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/gliderecord-query-within-loop-not-working/m-p/740817#M312596</guid>
      <dc:creator>Abhinay Erra</dc:creator>
      <dc:date>2016-08-25T16:01:38Z</dc:date>
    </item>
    <item>
      <title>Re: GlideRecord Query within Loop Not Working</title>
      <link>https://www.servicenow.com/community/itsm-forum/gliderecord-query-within-loop-not-working/m-p/740818#M312597</link>
      <description>&lt;P&gt;Thanks Abhinay, but affected_clients is a list and i want to process each of the list items with the GlideRecord.&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Let me try this and see if it works&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Tanumoy,&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;STRONG style="font-style: inherit; font-family: inherit; color: #666666;"&gt;getRelManagers(array_clients[count]); "&lt;/STRONG&gt;i" was a typo from my side&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 25 Aug 2016 16:01:58 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/gliderecord-query-within-loop-not-working/m-p/740818#M312597</guid>
      <dc:creator>sareshnaroji</dc:creator>
      <dc:date>2016-08-25T16:01:58Z</dc:date>
    </item>
    <item>
      <title>Re: GlideRecord Query within Loop Not Working</title>
      <link>https://www.servicenow.com/community/itsm-forum/gliderecord-query-within-loop-not-working/m-p/740819#M312598</link>
      <description>&lt;P&gt;You can always pass the entire thing and use IN operator in the glideRecord query. You do not need for loop at all.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 25 Aug 2016 16:03:29 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/gliderecord-query-within-loop-not-working/m-p/740819#M312598</guid>
      <dc:creator>Abhinay Erra</dc:creator>
      <dc:date>2016-08-25T16:03:29Z</dc:date>
    </item>
    <item>
      <title>Re: GlideRecord Query within Loop Not Working</title>
      <link>https://www.servicenow.com/community/itsm-forum/gliderecord-query-within-loop-not-working/m-p/740820#M312599</link>
      <description>&lt;P&gt;Sorry for the mistake. corrected it.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 25 Aug 2016 16:06:05 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/gliderecord-query-within-loop-not-working/m-p/740820#M312599</guid>
      <dc:creator>tanumoy</dc:creator>
      <dc:date>2016-08-25T16:06:05Z</dc:date>
    </item>
    <item>
      <title>Re: GlideRecord Query within Loop Not Working</title>
      <link>https://www.servicenow.com/community/itsm-forum/gliderecord-query-within-loop-not-working/m-p/740821#M312600</link>
      <description>&lt;P&gt;Np. Just letting you know&lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_macro_emoticon jive_emote jive_macro" data-renderedposition="8_166_16_16" src="https://www.servicenow.com/8.0.4.21bdc7e/images/emoticons/happy.png"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 25 Aug 2016 16:07:18 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/gliderecord-query-within-loop-not-working/m-p/740821#M312600</guid>
      <dc:creator>Abhinay Erra</dc:creator>
      <dc:date>2016-08-25T16:07:18Z</dc:date>
    </item>
    <item>
      <title>Re: GlideRecord Query within Loop Not Working</title>
      <link>https://www.servicenow.com/community/itsm-forum/gliderecord-query-within-loop-not-working/m-p/740822#M312601</link>
      <description>&lt;P&gt;Thank you Abhinay, passing the entire list works fine for looping within the list items&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 26 Aug 2016 13:18:49 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/gliderecord-query-within-loop-not-working/m-p/740822#M312601</guid>
      <dc:creator>sareshnaroji</dc:creator>
      <dc:date>2016-08-26T13:18:49Z</dc:date>
    </item>
  </channel>
</rss>

