<?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 Provider Notification Content in Product Launch forum</title>
    <link>https://www.servicenow.com/community/product-launch-forum/provider-notification-content/m-p/3392602#M4943</link>
    <description>&lt;P&gt;Can i add the variables that was created in the catalog item inside the record card type thought script in&amp;nbsp;sys_notification_va_content table&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2025-09-29 104204.png" style="width: 619px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/473103iA5E110F8D5F89512/image-size/large/is-moderation-mode/true?v=v2&amp;amp;px=999" role="button" title="Screenshot 2025-09-29 104204.png" alt="Screenshot 2025-09-29 104204.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="HARSHAGOWDAR_0-1759123218977.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/473104i4D5568143ECD925B/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="HARSHAGOWDAR_0-1759123218977.png" alt="HARSHAGOWDAR_0-1759123218977.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 29 Sep 2025 05:20:27 GMT</pubDate>
    <dc:creator>HARSHA GOWDA R</dc:creator>
    <dc:date>2025-09-29T05:20:27Z</dc:date>
    <item>
      <title>Provider Notification Content</title>
      <link>https://www.servicenow.com/community/product-launch-forum/provider-notification-content/m-p/3392602#M4943</link>
      <description>&lt;P&gt;Can i add the variables that was created in the catalog item inside the record card type thought script in&amp;nbsp;sys_notification_va_content table&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2025-09-29 104204.png" style="width: 619px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/473103iA5E110F8D5F89512/image-size/large/is-moderation-mode/true?v=v2&amp;amp;px=999" role="button" title="Screenshot 2025-09-29 104204.png" alt="Screenshot 2025-09-29 104204.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="HARSHAGOWDAR_0-1759123218977.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/473104i4D5568143ECD925B/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="HARSHAGOWDAR_0-1759123218977.png" alt="HARSHAGOWDAR_0-1759123218977.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Sep 2025 05:20:27 GMT</pubDate>
      <guid>https://www.servicenow.com/community/product-launch-forum/provider-notification-content/m-p/3392602#M4943</guid>
      <dc:creator>HARSHA GOWDA R</dc:creator>
      <dc:date>2025-09-29T05:20:27Z</dc:date>
    </item>
    <item>
      <title>Re: Provider Notification Content</title>
      <link>https://www.servicenow.com/community/product-launch-forum/provider-notification-content/m-p/3392605#M4944</link>
      <description>&lt;P&gt;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/533200"&gt;@HARSHA GOWDA R&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Yes, this is possible. Catalog Item variables are stored separately from the RITM record,you can fetch them through script.&lt;/P&gt;&lt;P&gt;You’ll need to query the sc_item_option_mtom table (which links RITM to variables) and then get the values from sc_item_option. From there, you can pass them into the card JSON template.&lt;BR /&gt;&lt;BR /&gt;If this resolves your query, please mark the response as helpful/accept the answer so it can assist others as well.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Sep 2025 05:41:40 GMT</pubDate>
      <guid>https://www.servicenow.com/community/product-launch-forum/provider-notification-content/m-p/3392605#M4944</guid>
      <dc:creator>sanjay02</dc:creator>
      <dc:date>2025-09-29T05:41:40Z</dc:date>
    </item>
    <item>
      <title>Re: Provider Notification Content</title>
      <link>https://www.servicenow.com/community/product-launch-forum/provider-notification-content/m-p/3392609#M4945</link>
      <description>&lt;P&gt;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/533200"&gt;@HARSHA GOWDA R&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;in the above script you shared query RITM with that sysapproval and grab the variable value&lt;/P&gt;
&lt;P&gt;something like this and then later use it&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;var gr = new GlideRecord("sc_req_item");
gr.addQuery("sys_id", current.sysapproval);
gr.query();
if (gr.next()) {
    var variableValue = gr.variables.variableName.getDisplayValue();
}&lt;/LI-CODE&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>Mon, 29 Sep 2025 05:50:28 GMT</pubDate>
      <guid>https://www.servicenow.com/community/product-launch-forum/provider-notification-content/m-p/3392609#M4945</guid>
      <dc:creator>Ankur Bawiskar</dc:creator>
      <dc:date>2025-09-29T05:50:28Z</dc:date>
    </item>
    <item>
      <title>Re: Provider Notification Content</title>
      <link>https://www.servicenow.com/community/product-launch-forum/provider-notification-content/m-p/3392613#M4946</link>
      <description>&lt;P&gt;Will it(variable) reflect in the card like below&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="HARSHAGOWDAR_0-1759125254796.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/473106iDDECDF62C7B62FA1/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="HARSHAGOWDAR_0-1759125254796.png" alt="HARSHAGOWDAR_0-1759125254796.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Sep 2025 05:54:29 GMT</pubDate>
      <guid>https://www.servicenow.com/community/product-launch-forum/provider-notification-content/m-p/3392613#M4946</guid>
      <dc:creator>HARSHA GOWDA R</dc:creator>
      <dc:date>2025-09-29T05:54:29Z</dc:date>
    </item>
    <item>
      <title>Re: Provider Notification Content</title>
      <link>https://www.servicenow.com/community/product-launch-forum/provider-notification-content/m-p/3392636#M4947</link>
      <description>&lt;P&gt;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/533200"&gt;@HARSHA GOWDA R&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Your current script is for header customization. If you want to customize the content, switch to the Message tab, click Advanced, and implement the above logic there. The changes will then reflect in the content.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sanjay02_0-1759127228640.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/473112i518C1B3E7F094FD7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="sanjay02_0-1759127228640.png" alt="sanjay02_0-1759127228640.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Sep 2025 06:27:17 GMT</pubDate>
      <guid>https://www.servicenow.com/community/product-launch-forum/provider-notification-content/m-p/3392636#M4947</guid>
      <dc:creator>sanjay02</dc:creator>
      <dc:date>2025-09-29T06:27:17Z</dc:date>
    </item>
    <item>
      <title>Re: Provider Notification Content</title>
      <link>https://www.servicenow.com/community/product-launch-forum/provider-notification-content/m-p/3392647#M4949</link>
      <description>&lt;P&gt;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/533200"&gt;@HARSHA GOWDA R&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I just shared the sample script.&lt;/P&gt;
&lt;P&gt;to see variable data in message then you need to write something similar in message section&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AnkurBawiskar_0-1759127792194.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/473113iB5BB9FA0DEDFE93D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AnkurBawiskar_0-1759127792194.png" alt="AnkurBawiskar_0-1759127792194.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&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>Mon, 29 Sep 2025 06:36:39 GMT</pubDate>
      <guid>https://www.servicenow.com/community/product-launch-forum/provider-notification-content/m-p/3392647#M4949</guid>
      <dc:creator>Ankur Bawiskar</dc:creator>
      <dc:date>2025-09-29T06:36:39Z</dc:date>
    </item>
    <item>
      <title>Re: Provider Notification Content</title>
      <link>https://www.servicenow.com/community/product-launch-forum/provider-notification-content/m-p/3400521#M5006</link>
      <description>&lt;P&gt;&lt;A href="https://www.servicenow.com/community/user/viewprofilepage/user-id/533200" target="_blank"&gt;@HARSHA GOWDA R&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>Wed, 08 Oct 2025 05:56:57 GMT</pubDate>
      <guid>https://www.servicenow.com/community/product-launch-forum/provider-notification-content/m-p/3400521#M5006</guid>
      <dc:creator>Ankur Bawiskar</dc:creator>
      <dc:date>2025-10-08T05:56:57Z</dc:date>
    </item>
    <item>
      <title>Re: Provider Notification Content</title>
      <link>https://www.servicenow.com/community/product-launch-forum/provider-notification-content/m-p/3490746#M5648</link>
      <description>&lt;P&gt;&lt;A href="https://www.servicenow.com/community/user/viewprofilepage/user-id/533200" target="_blank"&gt;@HARSHA GOWDA R&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;&lt;span class="lia-unicode-emoji" title=":light_bulb:"&gt;💡&lt;/span&gt; If my response helped, please mark it as correct &lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt; and close the thread &lt;span class="lia-unicode-emoji" title=":locked:"&gt;🔒&lt;/span&gt;— this helps future readers find the solution faster! &lt;span class="lia-unicode-emoji" title=":folded_hands:"&gt;🙏&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Feb 2026 08:37:24 GMT</pubDate>
      <guid>https://www.servicenow.com/community/product-launch-forum/provider-notification-content/m-p/3490746#M5648</guid>
      <dc:creator>Ankur Bawiskar</dc:creator>
      <dc:date>2026-02-17T08:37:24Z</dc:date>
    </item>
  </channel>
</rss>

