<?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: calling script include in report in Developer forum</title>
    <link>https://www.servicenow.com/community/developer-forum/calling-script-include-in-report/m-p/1455679#M112605</link>
    <description>&lt;P&gt;You only call the script include name and then the function name&amp;nbsp;liek that if you've defined a class for your script inculde. Have a look at the link below, it explains the difference and how and when to use them.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.servicenow.com/community?id=community_blog&amp;amp;sys_id=88bce625dbd0dbc01dcaf3231f9619be" rel="nofollow"&gt;https://community.servicenow.com/community?id=community_blog&amp;amp;sys_id=88bce625dbd0dbc01dcaf3231f9619be&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 15 Apr 2019 08:12:55 GMT</pubDate>
    <dc:creator>Dubz</dc:creator>
    <dc:date>2019-04-15T08:12:55Z</dc:date>
    <item>
      <title>calling script include in report</title>
      <link>https://www.servicenow.com/community/developer-forum/calling-script-include-in-report/m-p/1455667#M112593</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;i tried in following way but when i RUN report 0 records where displaying, when i run same script in background script i am getting desired out put after printing. Please suggest.&lt;/P&gt;
&lt;P&gt;please find my screen shot and script as below&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 15 Apr 2019 07:12:44 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/calling-script-include-in-report/m-p/1455667#M112593</guid>
      <dc:creator>Deepthi13</dc:creator>
      <dc:date>2019-04-15T07:12:44Z</dc:date>
    </item>
    <item>
      <title>Re: calling script include in report</title>
      <link>https://www.servicenow.com/community/developer-forum/calling-script-include-in-report/m-p/1455668#M112594</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;please refer to the following threads, you will find useful information for achieve it:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.servicenow.com/community?id=community_question&amp;amp;sys_id=54e043a5db98dbc01dcaf3231f9619ed" target="_blank" rel="noopener noreferrer nofollow"&gt;https://community.servicenow.com/community?id=community_question&amp;amp;sys_id=54e043a5db98dbc01dcaf3231f9619ed&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.servicenow.com/community?id=community_question&amp;amp;sys_id=5c7043e1db98dbc01dcaf3231f961999" target="_blank" rel="noopener noreferrer nofollow"&gt;https://community.servicenow.com/community?id=community_question&amp;amp;sys_id=5c7043e1db98dbc01dcaf3231f961999&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;If I have answered your question, please mark my response as correct so that others with the same question in the future can find it quickly and that it gets removed from the Unanswered list.&lt;/P&gt;
&lt;P&gt;Thank you&lt;/P&gt;
&lt;P&gt;Cheers&lt;BR /&gt;Alberto&lt;/P&gt;</description>
      <pubDate>Mon, 15 Apr 2019 07:17:53 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/calling-script-include-in-report/m-p/1455668#M112594</guid>
      <dc:creator>Alberto Consonn</dc:creator>
      <dc:date>2019-04-15T07:17:53Z</dc:date>
    </item>
    <item>
      <title>Re: calling script include in report</title>
      <link>https://www.servicenow.com/community/developer-forum/calling-script-include-in-report/m-p/1455669#M112595</link>
      <description>&lt;P&gt;hi alberto, i have seen that links and followed same way, but i need to modify script include probably can u check once script include&lt;/P&gt;
&lt;P&gt;function getDupes(){&lt;BR /&gt;var dupRecords = []; &lt;BR /&gt; var gaDupCheck1 = new GlideAggregate('cmdb_ci'); &lt;BR /&gt; gaDupCheck1.addQuery('active','true'); &lt;BR /&gt; gaDupCheck1.addAggregate('COUNT', 'serial_number'); &lt;BR /&gt; gaDupCheck1.groupBy('serial_number'); &lt;BR /&gt; gaDupCheck1.addHaving('COUNT', '&amp;gt;', 1); &lt;BR /&gt; gaDupCheck1.query(); &lt;BR /&gt; while (gaDupCheck1.next()) { &lt;BR /&gt; dupRecords.push(gaDupCheck1.serial_number.toString()); &lt;BR /&gt; } &lt;BR /&gt; return dupRecords;&lt;BR /&gt;}&lt;/P&gt;</description>
      <pubDate>Mon, 15 Apr 2019 07:20:36 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/calling-script-include-in-report/m-p/1455669#M112595</guid>
      <dc:creator>Deepthi13</dc:creator>
      <dc:date>2019-04-15T07:20:36Z</dc:date>
    </item>
    <item>
      <title>Re: calling script include in report</title>
      <link>https://www.servicenow.com/community/developer-forum/calling-script-include-in-report/m-p/1455670#M112596</link>
      <description>&lt;P&gt;The code seems okay, you have to change the condition in the report:&lt;/P&gt;
&lt;PRE class="language-javascript"&gt;&lt;CODE&gt;javascript: new ScriptIncludeName().getDupes();&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Please try this.&lt;/P&gt;
&lt;P&gt;Cheers&lt;/P&gt;
&lt;P&gt;Alberto&lt;/P&gt;</description>
      <pubDate>Mon, 15 Apr 2019 07:32:34 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/calling-script-include-in-report/m-p/1455670#M112596</guid>
      <dc:creator>Alberto Consonn</dc:creator>
      <dc:date>2019-04-15T07:32:34Z</dc:date>
    </item>
    <item>
      <title>Re: calling script include in report</title>
      <link>https://www.servicenow.com/community/developer-forum/calling-script-include-in-report/m-p/1455671#M112597</link>
      <description>&lt;P&gt;Hi alberto ,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;yes i changed to&amp;nbsp; (&amp;nbsp; javascript: new getDupes().dupRecords(); )&lt;/P&gt;
&lt;P&gt;but still facing same and i am getting 0 records, pls suggest&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I want to get duplicate serial number cmdb_ci_computer records in report&lt;/P&gt;</description>
      <pubDate>Mon, 15 Apr 2019 07:36:09 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/calling-script-include-in-report/m-p/1455671#M112597</guid>
      <dc:creator>Deepthi13</dc:creator>
      <dc:date>2019-04-15T07:36:09Z</dc:date>
    </item>
    <item>
      <title>Re: calling script include in report</title>
      <link>https://www.servicenow.com/community/developer-forum/calling-script-include-in-report/m-p/1455672#M112598</link>
      <description>&lt;P&gt;Have you marked your script include as client callable? That box must be ticked to be called in a report condition.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You don't need the class, you can call it as you were, script include should look like below:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/163442i6BE449AAC33BD954/image-size/large?v=v2&amp;amp;px=999" title="find_real_file.png" alt="find_real_file.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 15 Apr 2019 07:47:25 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/calling-script-include-in-report/m-p/1455672#M112598</guid>
      <dc:creator>Dubz</dc:creator>
      <dc:date>2019-04-15T07:47:25Z</dc:date>
    </item>
    <item>
      <title>Re: calling script include in report</title>
      <link>https://www.servicenow.com/community/developer-forum/calling-script-include-in-report/m-p/1455673#M112599</link>
      <description>&lt;P&gt;hi david, still i am getting 0 records in report&lt;/P&gt;
&lt;P&gt;please find script include as below, this is client callable&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;function getDupes(){&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;var dupRecords = []; &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt; var gaDupCheck1 = new GlideAggregate('cmdb_ci_computer'); &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt; gaDupCheck1.addQuery('active','true'); &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt; gaDupCheck1.addAggregate('COUNT', 'serial_number'); &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt; gaDupCheck1.groupBy('serial_number'); &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt; gaDupCheck1.addHaving('COUNT', '&amp;gt;', 1); &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt; gaDupCheck1.query(); &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt; while (gaDupCheck1.next()) { &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt; dupRecords.push(gaDupCheck1.serial_number.toString()); &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt; } &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt; return dupRecords;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;}&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;span class="lia-inline-image-display-wrapper"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/163458iA0CF0A8989C0F328/image-size/large?v=v2&amp;amp;px=999" title="find_real_file.png" alt="find_real_file.png" /&gt;&lt;/span&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;please find report as below,&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;javascript : new getDupes().dupRecords();&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/163450i9A614FDACF55F517/image-size/large?v=v2&amp;amp;px=999" title="find_real_file.png" alt="find_real_file.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 15 Apr 2019 07:52:06 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/calling-script-include-in-report/m-p/1455673#M112599</guid>
      <dc:creator>Deepthi13</dc:creator>
      <dc:date>2019-04-15T07:52:06Z</dc:date>
    </item>
    <item>
      <title>Re: calling script include in report</title>
      <link>https://www.servicenow.com/community/developer-forum/calling-script-include-in-report/m-p/1455674#M112600</link>
      <description>&lt;P&gt;hi&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;i have checked ur code is correct run in background script&lt;/P&gt;
&lt;PRE class="language-javascript"&gt;&lt;CODE&gt;var dupRecords = []; 
 var gaDupCheck1 = new GlideAggregate('cmdb_ci_computer'); 
 gaDupCheck1.addQuery('active','true'); 
 gaDupCheck1.addAggregate('COUNT', 'serial_number'); 
 gaDupCheck1.groupBy('serial_number'); 
 gaDupCheck1.addHaving('COUNT', '&amp;gt;', 1); 
 gaDupCheck1.query(); 
 while (gaDupCheck1.next()) { 
 dupRecords.push(gaDupCheck1.serial_number.toString()); 
 } 
 gs.print(dupRecords);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;it's giving the value&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;56WHL71,AEX5635Z0001AC,L3BB911&lt;BR /&gt;&lt;BR /&gt;only mistake this line&lt;BR /&gt;&lt;BR /&gt;javascript : new script_include_name.method_name();&lt;BR /&gt;&lt;BR /&gt;thanq&lt;/PRE&gt;</description>
      <pubDate>Mon, 15 Apr 2019 08:01:56 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/calling-script-include-in-report/m-p/1455674#M112600</guid>
      <dc:creator>Rahul Kumar17</dc:creator>
      <dc:date>2019-04-15T08:01:56Z</dc:date>
    </item>
    <item>
      <title>Re: calling script include in report</title>
      <link>https://www.servicenow.com/community/developer-forum/calling-script-include-in-report/m-p/1455675#M112601</link>
      <description>&lt;P&gt;hi&lt;/P&gt;
&lt;P&gt;don't use client callable&amp;nbsp;&lt;/P&gt;
&lt;P&gt;u pass the&amp;nbsp;&lt;/P&gt;
&lt;P&gt;javascript : new script_include_name.method_name();&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thanq&lt;/P&gt;</description>
      <pubDate>Mon, 15 Apr 2019 08:04:08 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/calling-script-include-in-report/m-p/1455675#M112601</guid>
      <dc:creator>Rahul Kumar17</dc:creator>
      <dc:date>2019-04-15T08:04:08Z</dc:date>
    </item>
    <item>
      <title>Re: calling script include in report</title>
      <link>https://www.servicenow.com/community/developer-forum/calling-script-include-in-report/m-p/1455676#M112602</link>
      <description>&lt;P&gt;hi rahul,&lt;/P&gt;
&lt;P&gt;pls check below and suggest if some thing wrong in calling script include&lt;/P&gt;
&lt;P&gt;my script include as below,&lt;/P&gt;
&lt;P&gt;function getDupes(){&lt;BR /&gt;var dupRecords = []; &lt;BR /&gt; var gaDupCheck1 = new GlideAggregate('cmdb_ci_computer'); &lt;BR /&gt; gaDupCheck1.addQuery('active','true'); &lt;BR /&gt; gaDupCheck1.addAggregate('COUNT', 'serial_number'); &lt;BR /&gt; gaDupCheck1.groupBy('serial_number'); &lt;BR /&gt; gaDupCheck1.addHaving('COUNT', '&amp;gt;', 1); &lt;BR /&gt; gaDupCheck1.query(); &lt;BR /&gt; while (gaDupCheck1.next()) { &lt;BR /&gt; dupRecords.push(gaDupCheck1.serial_number.toString()); &lt;BR /&gt; } &lt;BR /&gt; return dupRecords;&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;i given as below in report&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;javascript : new getDupes().dupRecords();&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 15 Apr 2019 08:07:33 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/calling-script-include-in-report/m-p/1455676#M112602</guid>
      <dc:creator>Deepthi13</dc:creator>
      <dc:date>2019-04-15T08:07:33Z</dc:date>
    </item>
    <item>
      <title>Re: calling script include in report</title>
      <link>https://www.servicenow.com/community/developer-forum/calling-script-include-in-report/m-p/1455677#M112603</link>
      <description>&lt;P&gt;Confirm your script include is named getDupes and call it as you were:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;javascript: getDupes()&lt;/P&gt;
&lt;P&gt;this works on my PDI:&lt;/P&gt;
&lt;P&gt;script include:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/163448i80C1075A75033CF5/image-size/large?v=v2&amp;amp;px=999" title="find_real_file.png" alt="find_real_file.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Report:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/163452i4008DADE8235AEFC/image-size/large?v=v2&amp;amp;px=999" title="find_real_file.png" alt="find_real_file.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 15 Apr 2019 08:10:12 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/calling-script-include-in-report/m-p/1455677#M112603</guid>
      <dc:creator>Dubz</dc:creator>
      <dc:date>2019-04-15T08:10:12Z</dc:date>
    </item>
    <item>
      <title>Re: calling script include in report</title>
      <link>https://www.servicenow.com/community/developer-forum/calling-script-include-in-report/m-p/1455678#M112604</link>
      <description>&lt;P&gt;my method name is&amp;nbsp;&lt;STRONG&gt;dupRecords() ,&lt;/STRONG&gt; is any thing wrong ?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;javascript : new getDupes().dupRecords();&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 15 Apr 2019 08:11:37 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/calling-script-include-in-report/m-p/1455678#M112604</guid>
      <dc:creator>Deepthi13</dc:creator>
      <dc:date>2019-04-15T08:11:37Z</dc:date>
    </item>
    <item>
      <title>Re: calling script include in report</title>
      <link>https://www.servicenow.com/community/developer-forum/calling-script-include-in-report/m-p/1455679#M112605</link>
      <description>&lt;P&gt;You only call the script include name and then the function name&amp;nbsp;liek that if you've defined a class for your script inculde. Have a look at the link below, it explains the difference and how and when to use them.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.servicenow.com/community?id=community_blog&amp;amp;sys_id=88bce625dbd0dbc01dcaf3231f9619be" rel="nofollow"&gt;https://community.servicenow.com/community?id=community_blog&amp;amp;sys_id=88bce625dbd0dbc01dcaf3231f9619be&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 15 Apr 2019 08:12:55 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/calling-script-include-in-report/m-p/1455679#M112605</guid>
      <dc:creator>Dubz</dc:creator>
      <dc:date>2019-04-15T08:12:55Z</dc:date>
    </item>
    <item>
      <title>Re: calling script include in report</title>
      <link>https://www.servicenow.com/community/developer-forum/calling-script-include-in-report/m-p/1455680#M112606</link>
      <description>&lt;P&gt;yes,&lt;/P&gt;
&lt;P&gt;it's working fine&lt;/P&gt;</description>
      <pubDate>Mon, 15 Apr 2019 08:26:23 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/calling-script-include-in-report/m-p/1455680#M112606</guid>
      <dc:creator>Rahul Kumar17</dc:creator>
      <dc:date>2019-04-15T08:26:23Z</dc:date>
    </item>
    <item>
      <title>Re: calling script include in report</title>
      <link>https://www.servicenow.com/community/developer-forum/calling-script-include-in-report/m-p/1455681#M112607</link>
      <description>&lt;P&gt;i think&amp;nbsp;&lt;/P&gt;
&lt;P&gt;it's wrong&amp;nbsp;&lt;/P&gt;
&lt;P&gt;dupRecords() is array variable name so don't pass variable name&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 15 Apr 2019 08:31:51 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/calling-script-include-in-report/m-p/1455681#M112607</guid>
      <dc:creator>Rahul Kumar17</dc:creator>
      <dc:date>2019-04-15T08:31:51Z</dc:date>
    </item>
    <item>
      <title>Re: calling script include in report</title>
      <link>https://www.servicenow.com/community/developer-forum/calling-script-include-in-report/m-p/1455682#M112608</link>
      <description>&lt;P&gt;u pass the&amp;nbsp;&lt;/P&gt;
&lt;P&gt;javasript: new script_include_name.methode_name()&lt;/P&gt;</description>
      <pubDate>Mon, 15 Apr 2019 08:33:16 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/calling-script-include-in-report/m-p/1455682#M112608</guid>
      <dc:creator>Rahul Kumar17</dc:creator>
      <dc:date>2019-04-15T08:33:16Z</dc:date>
    </item>
    <item>
      <title>Re: calling script include in report</title>
      <link>https://www.servicenow.com/community/developer-forum/calling-script-include-in-report/m-p/1455683#M112609</link>
      <description>&lt;P&gt;hi,&lt;/P&gt;
&lt;P&gt;it's working or not tell me&lt;/P&gt;</description>
      <pubDate>Mon, 15 Apr 2019 08:38:15 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/calling-script-include-in-report/m-p/1455683#M112609</guid>
      <dc:creator>Rahul Kumar17</dc:creator>
      <dc:date>2019-04-15T08:38:15Z</dc:date>
    </item>
    <item>
      <title>Re: calling script include in report</title>
      <link>https://www.servicenow.com/community/developer-forum/calling-script-include-in-report/m-p/1455684#M112610</link>
      <description>&lt;P&gt;Just to reiterate: you only call scriptIncludeName().methodName() if you have defined a class for your script include. Deepthi, you have written a classless script include so you need to call it as you were:&lt;/P&gt;
&lt;P&gt;javascript: getDupes()&lt;/P&gt;
&lt;P&gt;To confirm, you definitely need to have the client callable box ticked in order to call this in a report condition.&lt;/P&gt;</description>
      <pubDate>Mon, 15 Apr 2019 08:38:27 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/calling-script-include-in-report/m-p/1455684#M112610</guid>
      <dc:creator>Dubz</dc:creator>
      <dc:date>2019-04-15T08:38:27Z</dc:date>
    </item>
    <item>
      <title>Re: calling script include in report</title>
      <link>https://www.servicenow.com/community/developer-forum/calling-script-include-in-report/m-p/1455685#M112611</link>
      <description>&lt;P&gt;sorry,&lt;/P&gt;
&lt;P&gt;yes correct&lt;/P&gt;
&lt;P&gt;call&lt;/P&gt;
&lt;P&gt;javascript:getDupes();&lt;/P&gt;
&lt;P&gt;thanq David Dubuis for remember me&lt;/P&gt;
&lt;DIV class="hoverCardContainer lb-width ng-isolate-scope"&gt;
&lt;DIV class="popover ng-isolate-scope fade in bottom" title=""&gt;
&lt;DIV class="arrow"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="popover-inner"&gt;
&lt;DIV class="popover-content"&gt;
&lt;DIV id="hovercard-1" class="hovercard ng-scope"&gt;
&lt;DIV class="ng-scope"&gt;
&lt;DIV id="useravatar"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Mon, 15 Apr 2019 08:44:23 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/calling-script-include-in-report/m-p/1455685#M112611</guid>
      <dc:creator>Rahul Kumar17</dc:creator>
      <dc:date>2019-04-15T08:44:23Z</dc:date>
    </item>
    <item>
      <title>Re: calling script include in report</title>
      <link>https://www.servicenow.com/community/developer-forum/calling-script-include-in-report/m-p/1455686#M112612</link>
      <description>&lt;P&gt;Deepthi, please confirm you've configured this as above. If you have it should now be working so please mark my answer correct to close the thread down.&lt;/P&gt;</description>
      <pubDate>Mon, 15 Apr 2019 09:11:47 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/calling-script-include-in-report/m-p/1455686#M112612</guid>
      <dc:creator>Dubz</dc:creator>
      <dc:date>2019-04-15T09:11:47Z</dc:date>
    </item>
  </channel>
</rss>

