<?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: Script for setting approval from catalog item variable on REQ in ServiceNow AI Platform forum</title>
    <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/script-for-setting-approval-from-catalog-item-variable-on-req/m-p/1082674#M39063</link>
    <description>&lt;P&gt;If this workflow is on request then you should query the RITM details and use them&lt;/P&gt;
&lt;P&gt;somethink like this.&lt;/P&gt;
&lt;PRE class="language-javascript"&gt;&lt;CODE&gt;var answer=[];
var grScReqItem = new GlideRecord('sc_req_item');
grScReqItem.addEncodedQuery("request="+current.sys_id+"^cat_item=1391a4db070630100b36f6fd7c1ed0c2");//map you catalog item sysid here.
grScReqItem.query();
if (grScReqItem.next()) {

answer.push(grScReqItem.variables.manager.toString());
}
    &lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;for below line you should modify the highlated part with the catalog item sysid you want to fetch manager details from.&lt;/P&gt;
&lt;P&gt;grScReqItem.addEncodedQuery("request="+current.sys_id+"^cat_item=&lt;STRONG&gt;1391a4db070630100b36f6fd7c1ed0c2&lt;/STRONG&gt;");&lt;/P&gt;</description>
    <pubDate>Tue, 08 Mar 2022 07:22:11 GMT</pubDate>
    <dc:creator>Voona Rohila</dc:creator>
    <dc:date>2022-03-08T07:22:11Z</dc:date>
    <item>
      <title>Script for setting approval from catalog item variable on REQ</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/script-for-setting-approval-from-catalog-item-variable-on-req/m-p/1082657#M39046</link>
      <description>&lt;P&gt;Hi everyone,&lt;/P&gt;
&lt;P&gt;How do you set approval in workflow?&lt;/P&gt;
&lt;P&gt;I would like to set the approver to be from variable?&lt;BR /&gt;the catalog item variable is manager and value will be from manager field.&lt;/P&gt;
&lt;P&gt;Thanks in advanced.&lt;/P&gt;</description>
      <pubDate>Fri, 04 Mar 2022 07:10:14 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/script-for-setting-approval-from-catalog-item-variable-on-req/m-p/1082657#M39046</guid>
      <dc:creator>Kifrez</dc:creator>
      <dc:date>2022-03-04T07:10:14Z</dc:date>
    </item>
    <item>
      <title>Re: Script for setting approval from catalog item variable on REQ</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/script-for-setting-approval-from-catalog-item-variable-on-req/m-p/1082658#M39047</link>
      <description>&lt;P&gt;In workflow approval activity, you can write something like this:&lt;/P&gt;
&lt;P&gt;var manager=current.variables.manager;&lt;BR /&gt;answer=manager;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Mar 2022 07:59:30 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/script-for-setting-approval-from-catalog-item-variable-on-req/m-p/1082658#M39047</guid>
      <dc:creator>Monika13</dc:creator>
      <dc:date>2022-03-04T07:59:30Z</dc:date>
    </item>
    <item>
      <title>Re: Script for setting approval from catalog item variable on REQ</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/script-for-setting-approval-from-catalog-item-variable-on-req/m-p/1082659#M39048</link>
      <description>&lt;P&gt;Use the below code under&amp;nbsp;workflow approval activity.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;answer = [];&lt;/P&gt;
&lt;P&gt;answer.push(current.variables.variable-name.sys_id);&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;where variable name is backend value of variable like If i created Manager Variable so I use backend name of variable manager then the code will be :&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;answer = [];&lt;/P&gt;
&lt;P&gt;answer.push(current.variables.manager.sys_id);&lt;/P&gt;</description>
      <pubDate>Fri, 04 Mar 2022 08:07:40 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/script-for-setting-approval-from-catalog-item-variable-on-req/m-p/1082659#M39048</guid>
      <dc:creator>Shikha puri</dc:creator>
      <dc:date>2022-03-04T08:07:40Z</dc:date>
    </item>
    <item>
      <title>Re: Script for setting approval from catalog item variable on REQ</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/script-for-setting-approval-from-catalog-item-variable-on-req/m-p/1082660#M39049</link>
      <description>&lt;P&gt;@Freddy&lt;/P&gt;
&lt;P&gt;Create Approval User activity and try below code in advanced script:&lt;/P&gt;
&lt;PRE class="language-javascript"&gt;&lt;CODE&gt;answer=[];
answer.push(current.variables.u_manager.toString()); //give your manager variable name&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Hope it helps&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;P&gt;Murthy&lt;/P&gt;</description>
      <pubDate>Fri, 04 Mar 2022 08:13:46 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/script-for-setting-approval-from-catalog-item-variable-on-req/m-p/1082660#M39049</guid>
      <dc:creator>Murthy Ch</dc:creator>
      <dc:date>2022-03-04T08:13:46Z</dc:date>
    </item>
    <item>
      <title>Re: Script for setting approval from catalog item variable on REQ</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/script-for-setting-approval-from-catalog-item-variable-on-req/m-p/1082661#M39050</link>
      <description>&lt;P&gt;hi Monika, this doesn't seem to work. Do you have another idea?&lt;/P&gt;</description>
      <pubDate>Tue, 08 Mar 2022 06:35:37 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/script-for-setting-approval-from-catalog-item-variable-on-req/m-p/1082661#M39050</guid>
      <dc:creator>Kifrez</dc:creator>
      <dc:date>2022-03-08T06:35:37Z</dc:date>
    </item>
    <item>
      <title>Re: Script for setting approval from catalog item variable on REQ</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/script-for-setting-approval-from-catalog-item-variable-on-req/m-p/1082662#M39051</link>
      <description>&lt;P&gt;Hi Shikha, this doesn't seem to work. Do you have another idea?&lt;/P&gt;</description>
      <pubDate>Tue, 08 Mar 2022 06:35:51 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/script-for-setting-approval-from-catalog-item-variable-on-req/m-p/1082662#M39051</guid>
      <dc:creator>Kifrez</dc:creator>
      <dc:date>2022-03-08T06:35:51Z</dc:date>
    </item>
    <item>
      <title>Re: Script for setting approval from catalog item variable on REQ</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/script-for-setting-approval-from-catalog-item-variable-on-req/m-p/1082663#M39052</link>
      <description>&lt;P&gt;Hi Murthy, , this doesn't seem to work. Do you have another idea?&lt;/P&gt;</description>
      <pubDate>Tue, 08 Mar 2022 06:36:11 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/script-for-setting-approval-from-catalog-item-variable-on-req/m-p/1082663#M39052</guid>
      <dc:creator>Kifrez</dc:creator>
      <dc:date>2022-03-08T06:36:11Z</dc:date>
    </item>
    <item>
      <title>Re: Script for setting approval from catalog item variable on REQ</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/script-for-setting-approval-from-catalog-item-variable-on-req/m-p/1082664#M39053</link>
      <description>&lt;P&gt;HI Freddy&lt;/P&gt;
&lt;P&gt;are you using proper variable name ?&lt;/P&gt;
&lt;P&gt;You should use below coode in 'Approval - user' activity.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE class="language-javascript"&gt;&lt;CODE&gt;answer=[];
answer.push(current.variables.u_manager.toString()); //give your manager variable name&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Can you also check if manager details are filled or not?&lt;/P&gt;</description>
      <pubDate>Tue, 08 Mar 2022 06:40:32 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/script-for-setting-approval-from-catalog-item-variable-on-req/m-p/1082664#M39053</guid>
      <dc:creator>Voona Rohila</dc:creator>
      <dc:date>2022-03-08T06:40:32Z</dc:date>
    </item>
    <item>
      <title>Re: Script for setting approval from catalog item variable on REQ</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/script-for-setting-approval-from-catalog-item-variable-on-req/m-p/1082665#M39054</link>
      <description>&lt;P&gt;Hi Freddy,&lt;/P&gt;
&lt;P&gt;Can you share the scrrenshot?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 08 Mar 2022 06:41:37 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/script-for-setting-approval-from-catalog-item-variable-on-req/m-p/1082665#M39054</guid>
      <dc:creator>Murthy Ch</dc:creator>
      <dc:date>2022-03-08T06:41:37Z</dc:date>
    </item>
    <item>
      <title>Re: Script for setting approval from catalog item variable on REQ</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/script-for-setting-approval-from-catalog-item-variable-on-req/m-p/1082666#M39055</link>
      <description>&lt;P&gt;Hi Rohila,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Yes, the variable name is manager and is part of variable set called user_profile_set&lt;/P&gt;
&lt;PRE class="language-markup"&gt;&lt;CODE&gt;answer = [];
answer.push(gr.variables.manager.toString());&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="find_real_file.png"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/108210i62EC63DF94181E17/image-size/large?v=v2&amp;amp;px=999" role="button" title="find_real_file.png" alt="find_real_file.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Mar 2022 06:47:35 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/script-for-setting-approval-from-catalog-item-variable-on-req/m-p/1082666#M39055</guid>
      <dc:creator>Kifrez</dc:creator>
      <dc:date>2022-03-08T06:47:35Z</dc:date>
    </item>
    <item>
      <title>Re: Script for setting approval from catalog item variable on REQ</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/script-for-setting-approval-from-catalog-item-variable-on-req/m-p/1082667#M39056</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Please replace with gr with &lt;STRONG&gt;current&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Mar 2022 06:50:29 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/script-for-setting-approval-from-catalog-item-variable-on-req/m-p/1082667#M39056</guid>
      <dc:creator>Murthy Ch</dc:creator>
      <dc:date>2022-03-08T06:50:29Z</dc:date>
    </item>
    <item>
      <title>Re: Script for setting approval from catalog item variable on REQ</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/script-for-setting-approval-from-catalog-item-variable-on-req/m-p/1082668#M39057</link>
      <description>&lt;P&gt;Hi freddy&lt;/P&gt;
&lt;P&gt;there is a mistake in your code,You cannot use gr as it is not defined.&lt;/P&gt;
&lt;P&gt;use current to access the details of current record.&lt;/P&gt;
&lt;P&gt;code:&lt;/P&gt;
&lt;PRE class="language-javascript"&gt;&lt;CODE&gt;answer=[];
answer.push(current.variables.manager.toString()); //give your manager variable name&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 08 Mar 2022 06:53:15 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/script-for-setting-approval-from-catalog-item-variable-on-req/m-p/1082668#M39057</guid>
      <dc:creator>Voona Rohila</dc:creator>
      <dc:date>2022-03-08T06:53:15Z</dc:date>
    </item>
    <item>
      <title>Re: Script for setting approval from catalog item variable on REQ</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/script-for-setting-approval-from-catalog-item-variable-on-req/m-p/1082669#M39058</link>
      <description>&lt;P&gt;Hi Murthy,&lt;/P&gt;
&lt;P&gt;thanks for the response.&lt;/P&gt;
&lt;P&gt;Variable name on order guide is manager&lt;/P&gt;
&lt;P&gt;this variable = manager is part of a variable set.&lt;/P&gt;
&lt;P&gt;I just changed to gr.variables.manager.toString() or current.variables.manager.toString()&lt;/P&gt;
&lt;P&gt;Both don't work.&lt;/P&gt;
&lt;PRE class="language-markup"&gt;&lt;CODE&gt;answer = [];
answer.push(current.variables.manager.toString());&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="find_real_file.png"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/108214i7018A70714D57EB0/image-size/large?v=v2&amp;amp;px=999" role="button" title="find_real_file.png" alt="find_real_file.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Mar 2022 06:58:52 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/script-for-setting-approval-from-catalog-item-variable-on-req/m-p/1082669#M39058</guid>
      <dc:creator>Kifrez</dc:creator>
      <dc:date>2022-03-08T06:58:52Z</dc:date>
    </item>
    <item>
      <title>Re: Script for setting approval from catalog item variable on REQ</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/script-for-setting-approval-from-catalog-item-variable-on-req/m-p/1082670#M39059</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I assume your workflow is on RITM table&lt;/P&gt;
&lt;P&gt;then this should work fine&lt;/P&gt;
&lt;P&gt;Did you add logs what came in manager variable?&lt;/P&gt;
&lt;PRE class="language-javascript"&gt;&lt;CODE&gt;answer = [];

answer.push(current.variables.manager.toString());&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Regards&lt;BR /&gt;Ankur&lt;/P&gt;</description>
      <pubDate>Tue, 08 Mar 2022 07:11:15 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/script-for-setting-approval-from-catalog-item-variable-on-req/m-p/1082670#M39059</guid>
      <dc:creator>Ankur Bawiskar</dc:creator>
      <dc:date>2022-03-08T07:11:15Z</dc:date>
    </item>
    <item>
      <title>Re: Script for setting approval from catalog item variable on REQ</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/script-for-setting-approval-from-catalog-item-variable-on-req/m-p/1082671#M39060</link>
      <description>&lt;P&gt;Hi Rohila,&lt;/P&gt;
&lt;P&gt;Thanks for your responses.&lt;/P&gt;
&lt;P&gt;I've changed it to current.variables.manager.toString()&lt;/P&gt;
&lt;PRE class="language-markup"&gt;&lt;CODE&gt;answer=[];
answer.push(current.variables.manager.toString());&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Still doesn't work.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So far it only works, if I add a user , it works&lt;/P&gt;</description>
      <pubDate>Tue, 08 Mar 2022 07:11:24 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/script-for-setting-approval-from-catalog-item-variable-on-req/m-p/1082671#M39060</guid>
      <dc:creator>Kifrez</dc:creator>
      <dc:date>2022-03-08T07:11:24Z</dc:date>
    </item>
    <item>
      <title>Re: Script for setting approval from catalog item variable on REQ</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/script-for-setting-approval-from-catalog-item-variable-on-req/m-p/1082672#M39061</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Manager is a refernce field right? can you keep logs and verify manager value.&lt;/P&gt;
&lt;P&gt;you can also try this, both will work&lt;/P&gt;
&lt;PRE class="language-markup"&gt;&lt;CODE&gt;answer=[];
answer.push(current.variable_pool.manager.toString());&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 08 Mar 2022 07:15:31 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/script-for-setting-approval-from-catalog-item-variable-on-req/m-p/1082672#M39061</guid>
      <dc:creator>Voona Rohila</dc:creator>
      <dc:date>2022-03-08T07:15:31Z</dc:date>
    </item>
    <item>
      <title>Re: Script for setting approval from catalog item variable on REQ</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/script-for-setting-approval-from-catalog-item-variable-on-req/m-p/1082673#M39062</link>
      <description>&lt;P&gt;Hi &lt;SN-MENTION class="sn-mention" table="live_profile" sysid="19525629dbd81fc09c9ffb651f961989"&gt;@Ankur Bawiskar&lt;/SN-MENTION&gt; ,&lt;/P&gt;
&lt;P&gt;No, this is on sc_request&lt;/P&gt;
&lt;P&gt;This is a follow up after the If statement.&lt;/P&gt;
&lt;P&gt;No , I did not.&lt;/P&gt;
&lt;P&gt;variable name is manager and part of variable set = user_profile_set&lt;/P&gt;
&lt;P&gt;manager is reference to sys_user table&lt;/P&gt;
&lt;P&gt;I tried below but doesn't work&lt;/P&gt;
&lt;PRE class="language-markup"&gt;&lt;CODE&gt;answer.push(current.variables.manager.toString());
OR
answer.push(gr.variables.manager.toString());
OR
answer.push(gr.variables.manager.getValue());&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Mar 2022 07:17:14 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/script-for-setting-approval-from-catalog-item-variable-on-req/m-p/1082673#M39062</guid>
      <dc:creator>Kifrez</dc:creator>
      <dc:date>2022-03-08T07:17:14Z</dc:date>
    </item>
    <item>
      <title>Re: Script for setting approval from catalog item variable on REQ</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/script-for-setting-approval-from-catalog-item-variable-on-req/m-p/1082674#M39063</link>
      <description>&lt;P&gt;If this workflow is on request then you should query the RITM details and use them&lt;/P&gt;
&lt;P&gt;somethink like this.&lt;/P&gt;
&lt;PRE class="language-javascript"&gt;&lt;CODE&gt;var answer=[];
var grScReqItem = new GlideRecord('sc_req_item');
grScReqItem.addEncodedQuery("request="+current.sys_id+"^cat_item=1391a4db070630100b36f6fd7c1ed0c2");//map you catalog item sysid here.
grScReqItem.query();
if (grScReqItem.next()) {

answer.push(grScReqItem.variables.manager.toString());
}
    &lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;for below line you should modify the highlated part with the catalog item sysid you want to fetch manager details from.&lt;/P&gt;
&lt;P&gt;grScReqItem.addEncodedQuery("request="+current.sys_id+"^cat_item=&lt;STRONG&gt;1391a4db070630100b36f6fd7c1ed0c2&lt;/STRONG&gt;");&lt;/P&gt;</description>
      <pubDate>Tue, 08 Mar 2022 07:22:11 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/script-for-setting-approval-from-catalog-item-variable-on-req/m-p/1082674#M39063</guid>
      <dc:creator>Voona Rohila</dc:creator>
      <dc:date>2022-03-08T07:22:11Z</dc:date>
    </item>
    <item>
      <title>Re: Script for setting approval from catalog item variable on REQ</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/script-for-setting-approval-from-catalog-item-variable-on-req/m-p/1082675#M39064</link>
      <description>&lt;P&gt;then query RITM&lt;/P&gt;
&lt;PRE class="language-javascript"&gt;&lt;CODE&gt;answer = [];
var gr = new GlideRecord("sc_req_item");
gr.addQuery("request", current.request);
gr.query();
if (gr.next()) {
	answer.push(gr.variables.manager.toString());
}&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Regards&lt;BR /&gt;Ankur&lt;/P&gt;</description>
      <pubDate>Tue, 08 Mar 2022 07:23:17 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/script-for-setting-approval-from-catalog-item-variable-on-req/m-p/1082675#M39064</guid>
      <dc:creator>Ankur Bawiskar</dc:creator>
      <dc:date>2022-03-08T07:23:17Z</dc:date>
    </item>
    <item>
      <title>Re: Script for setting approval from catalog item variable on REQ</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/script-for-setting-approval-from-catalog-item-variable-on-req/m-p/1082676#M39065</link>
      <description>&lt;P&gt;Hi &lt;SN-MENTION class="sn-mention" table="live_profile" sysid="adf81743dbff570067a72926ca961931"&gt;@Rohila Voona&lt;/SN-MENTION&gt; thanks that works with cat item sys id !! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Mar 2022 23:24:04 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/script-for-setting-approval-from-catalog-item-variable-on-req/m-p/1082676#M39065</guid>
      <dc:creator>Kifrez</dc:creator>
      <dc:date>2022-03-08T23:24:04Z</dc:date>
    </item>
  </channel>
</rss>

