<?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 How to access the display value for a catalog variable in flow designer (Create catalog task) in ServiceNow AI Platform forum</title>
    <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/how-to-access-the-display-value-for-a-catalog-variable-in-flow/m-p/1227564#M169273</link>
    <description>&lt;P&gt;I would like to add variables to the Description field of "Create Catalog Task" in Flow Designer.&amp;nbsp; I know the variables are available and can be selected using the Catalog Variables selection box.&amp;nbsp; But for readability purposes, I would like this information in the Description field of the catalog task.&amp;nbsp; Some of the fields display correctly while other are showing the sysid.&amp;nbsp; Is it possible to get the display values in the Description field?&lt;/P&gt;
&lt;P&gt;This is the description field in flow designer&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/122174iFD0DAE3D4335DE5C/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;
&lt;P&gt;This is the description field in the catalog task&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/122175iC373842454FDEB41/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;
&lt;P&gt;Thanks for your help.&lt;/P&gt;</description>
    <pubDate>Tue, 03 Nov 2020 17:00:50 GMT</pubDate>
    <dc:creator>donnadavis</dc:creator>
    <dc:date>2020-11-03T17:00:50Z</dc:date>
    <item>
      <title>How to access the display value for a catalog variable in flow designer (Create catalog task)</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/how-to-access-the-display-value-for-a-catalog-variable-in-flow/m-p/1227564#M169273</link>
      <description>&lt;P&gt;I would like to add variables to the Description field of "Create Catalog Task" in Flow Designer.&amp;nbsp; I know the variables are available and can be selected using the Catalog Variables selection box.&amp;nbsp; But for readability purposes, I would like this information in the Description field of the catalog task.&amp;nbsp; Some of the fields display correctly while other are showing the sysid.&amp;nbsp; Is it possible to get the display values in the Description field?&lt;/P&gt;
&lt;P&gt;This is the description field in flow designer&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/122174iFD0DAE3D4335DE5C/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;
&lt;P&gt;This is the description field in the catalog task&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/122175iC373842454FDEB41/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;
&lt;P&gt;Thanks for your help.&lt;/P&gt;</description>
      <pubDate>Tue, 03 Nov 2020 17:00:50 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/how-to-access-the-display-value-for-a-catalog-variable-in-flow/m-p/1227564#M169273</guid>
      <dc:creator>donnadavis</dc:creator>
      <dc:date>2020-11-03T17:00:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to access the display value for a catalog variable in flow designer (Create catalog task)</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/how-to-access-the-display-value-for-a-catalog-variable-in-flow/m-p/1227565#M169274</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;you will have to use script for this using the f(x) for the short description&lt;/P&gt;
&lt;P&gt;something like this&lt;/P&gt;
&lt;PRE class="language-javascript"&gt;&lt;CODE&gt;var values = '';

var sysId = fd_data.trigger.current.sys_id;

var gr = new GlideRecord('sc_req_item');

gr.addQuery('sys_id', sysId);

gr.query();

if(gr.next()){

var variables = gr.variables.getElements();
    for (var i=0;i&amp;lt;variables.length;i++) {
        var question = variables[i].getQuestion();
        values = values + question.getLabel() + ":" + question.getDisplayValue() + '\n';
    }

return values;

}&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/122170i7760CBC6E6697075/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;
&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/122172i0FDFC913961875F1/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;
&lt;P&gt;Regards&lt;BR /&gt;Ankur&lt;/P&gt;</description>
      <pubDate>Tue, 03 Nov 2020 17:11:00 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/how-to-access-the-display-value-for-a-catalog-variable-in-flow/m-p/1227565#M169274</guid>
      <dc:creator>Ankur Bawiskar</dc:creator>
      <dc:date>2020-11-03T17:11:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to access the display value for a catalog variable in flow designer (Create catalog task)</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/how-to-access-the-display-value-for-a-catalog-variable-in-flow/m-p/1227566#M169275</link>
      <description>&lt;P&gt;This is for the Description field, not Short Description.&amp;nbsp; Is the principle still the same?&amp;nbsp; I am not sure how to include all the fields I want.&amp;nbsp; Thanks.&lt;/P&gt;</description>
      <pubDate>Tue, 03 Nov 2020 17:16:33 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/how-to-access-the-display-value-for-a-catalog-variable-in-flow/m-p/1227566#M169275</guid>
      <dc:creator>donnadavis</dc:creator>
      <dc:date>2020-11-03T17:16:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to access the display value for a catalog variable in flow designer (Create catalog task)</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/how-to-access-the-display-value-for-a-catalog-variable-in-flow/m-p/1227567#M169276</link>
      <description>&lt;P&gt;&lt;SN-MENTION class="sn-mention" table="live_profile" sysid="933092e5db581fc09c9ffb651f9619f3"&gt;@donnadavis&lt;/SN-MENTION&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;the concept still remains the same&lt;/P&gt;
&lt;P&gt;just select the description field instead of short description&lt;/P&gt;
&lt;P&gt;Regards&lt;BR /&gt;Ankur&lt;/P&gt;</description>
      <pubDate>Wed, 04 Nov 2020 05:38:24 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/how-to-access-the-display-value-for-a-catalog-variable-in-flow/m-p/1227567#M169276</guid>
      <dc:creator>Ankur Bawiskar</dc:creator>
      <dc:date>2020-11-04T05:38:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to access the display value for a catalog variable in flow designer (Create catalog task)</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/how-to-access-the-display-value-for-a-catalog-variable-in-flow/m-p/1227568#M169277</link>
      <description>&lt;P&gt;&lt;SN-MENTION class="sn-mention" table="live_profile" sysid="933092e5db581fc09c9ffb651f9619f3"&gt;@donnadavis&lt;/SN-MENTION&gt;&amp;nbsp;- To add, you can apply inline script for any field. Details below&lt;/P&gt;
&lt;P&gt;&lt;A href="https://docs.servicenow.com/bundle/paris-servicenow-platform/page/administer/flow-designer/concept/inline-scripts.html"&gt;https://docs.servicenow.com/bundle/paris-servicenow-platform/page/administer/flow-designer/concept/inline-scripts.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Nov 2020 05:41:24 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/how-to-access-the-display-value-for-a-catalog-variable-in-flow/m-p/1227568#M169277</guid>
      <dc:creator>Pradeep Sharma</dc:creator>
      <dc:date>2020-11-04T05:41:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to access the display value for a catalog variable in flow designer (Create catalog task)</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/how-to-access-the-display-value-for-a-catalog-variable-in-flow/m-p/1227569#M169278</link>
      <description>&lt;P&gt;&lt;SN-MENTION class="sn-mention" table="live_profile" sysid="933092e5db581fc09c9ffb651f9619f3"&gt;@donnadavis&lt;/SN-MENTION&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Let me know if I have answered your question.&lt;BR /&gt;&lt;BR /&gt;If so, please mark appropriate response as correct &amp;amp; helpful so that this thread can be closed and others can be benefited by this.&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Ankur&lt;/P&gt;</description>
      <pubDate>Thu, 05 Nov 2020 14:05:24 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/how-to-access-the-display-value-for-a-catalog-variable-in-flow/m-p/1227569#M169278</guid>
      <dc:creator>Ankur Bawiskar</dc:creator>
      <dc:date>2020-11-05T14:05:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to access the display value for a catalog variable in flow designer (Create catalog task)</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/how-to-access-the-display-value-for-a-catalog-variable-in-flow/m-p/1227570#M169279</link>
      <description>&lt;P&gt;I am still trying to get the variables to work.&amp;nbsp; something I am doing is wrong because the variables keep coming up as undefined.&lt;/P&gt;</description>
      <pubDate>Thu, 05 Nov 2020 14:13:31 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/how-to-access-the-display-value-for-a-catalog-variable-in-flow/m-p/1227570#M169279</guid>
      <dc:creator>donnadavis</dc:creator>
      <dc:date>2020-11-05T14:13:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to access the display value for a catalog variable in flow designer (Create catalog task)</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/how-to-access-the-display-value-for-a-catalog-variable-in-flow/m-p/1227571#M169280</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;please share your script&lt;/P&gt;
&lt;P&gt;Regards&lt;BR /&gt;Ankur&lt;/P&gt;</description>
      <pubDate>Thu, 05 Nov 2020 14:19:11 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/how-to-access-the-display-value-for-a-catalog-variable-in-flow/m-p/1227571#M169280</guid>
      <dc:creator>Ankur Bawiskar</dc:creator>
      <dc:date>2020-11-05T14:19:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to access the display value for a catalog variable in flow designer (Create catalog task)</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/how-to-access-the-display-value-for-a-catalog-variable-in-flow/m-p/1227572#M169281</link>
      <description>&lt;P&gt;I changed it a lot trying to get it to work, but I think this is what I started with&lt;/P&gt;
&lt;DIV&gt;
&lt;DIV&gt;var desc1 = "Name: "fd_data.trigger.current.ci_user_first_name+"\n";&lt;/DIV&gt;
&lt;DIV&gt;desc1 += "Last Name: "fd_data.trigger.current.ci_user_last_name+"\n";&lt;/DIV&gt;
&lt;DIV&gt;return desc1;&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Thu, 05 Nov 2020 14:28:47 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/how-to-access-the-display-value-for-a-catalog-variable-in-flow/m-p/1227572#M169281</guid>
      <dc:creator>donnadavis</dc:creator>
      <dc:date>2020-11-05T14:28:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to access the display value for a catalog variable in flow designer (Create catalog task)</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/how-to-access-the-display-value-for-a-catalog-variable-in-flow/m-p/1227573#M169282</link>
      <description>&lt;P&gt;&lt;SN-MENTION class="sn-mention" table="live_profile" sysid="933092e5db581fc09c9ffb651f9619f3"&gt;@donnadavis&lt;/SN-MENTION&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;it should be this&lt;/P&gt;
&lt;P&gt;I assume you must be already having Get Catalog Variables Action before this&lt;/P&gt;
&lt;DIV&gt;
&lt;DIV&gt;var desc1 = "Name: " + fd_data.trigger.&lt;STRONG&gt;request_item.variables&lt;/STRONG&gt;.ci_user_first_name.&lt;STRONG&gt;getDisplayValue()&lt;/STRONG&gt; + "\n";&lt;/DIV&gt;
&lt;DIV&gt;desc1 += "Last Name: " + fd_data.trigger.&lt;STRONG&gt;request_item.variables&lt;/STRONG&gt;.current.ci_user_last_name.&lt;STRONG&gt;getDisplayValue()&lt;/STRONG&gt; + "\n";&lt;/DIV&gt;
&lt;DIV&gt;return desc1;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&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/122168i764888411F432716/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;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;Regards&lt;BR /&gt;Ankur&lt;/P&gt;</description>
      <pubDate>Thu, 05 Nov 2020 15:22:33 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/how-to-access-the-display-value-for-a-catalog-variable-in-flow/m-p/1227573#M169282</guid>
      <dc:creator>Ankur Bawiskar</dc:creator>
      <dc:date>2020-11-05T15:22:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to access the display value for a catalog variable in flow designer (Create catalog task)</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/how-to-access-the-display-value-for-a-catalog-variable-in-flow/m-p/1227574#M169283</link>
      <description>&lt;P&gt;That worked.&amp;nbsp; Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 05 Nov 2020 15:46:29 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/how-to-access-the-display-value-for-a-catalog-variable-in-flow/m-p/1227574#M169283</guid>
      <dc:creator>donnadavis</dc:creator>
      <dc:date>2020-11-05T15:46:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to access the display value for a catalog variable in flow designer (Create catalog task)</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/how-to-access-the-display-value-for-a-catalog-variable-in-flow/m-p/1227575#M169284</link>
      <description>&lt;DIV class="cm-comment-container pull-right" data-ng-class="isMobileView() ? 'mobile-view': 'pull-right'"&gt;
&lt;DIV class="cm-comment-text cm-comment-view-mode ng-scope" data-ng-if="!comment.showEditMode"&gt;
&lt;DIV class="cm-comment-body"&gt;
&lt;DIV class="cm-comment-text-info"&gt;
&lt;P&gt;Hi Ankur,&lt;BR /&gt;&lt;BR /&gt;I have a query regarding flow designer, My requirement is to set the variable value in RITM for the specific Catalog Item.&lt;BR /&gt;&lt;BR /&gt;I created the trigger as Service Catalog, Action Get Catalog Variable from HR Job Profile (Catalog Item). And selected all the variables there too. But got stuck in the step to set the variable's value.&lt;BR /&gt;&lt;BR /&gt;Suppose, I have a checkbox variable i.e. "ABC" and like to set "True".&lt;BR /&gt;&lt;BR /&gt;I tried with Run Script but still no luck.&lt;BR /&gt;var nameOfABCVariable = fd_data._1__get_catalog_variables.abc.getName();&lt;BR /&gt;&lt;BR /&gt;gs.log("abc name: " + nameOfABCVariable);&lt;BR /&gt;&lt;BR /&gt;In log, it's printing as undefined.&lt;BR /&gt;&lt;BR /&gt;However, if I used like this then it returns as true even it is not defined by the user in the RITM record.&lt;BR /&gt;var nameOfABCVariable = fd_data._1__get_catalog_variables.abc;&lt;BR /&gt;&lt;BR /&gt;gs.log("abc name: " + nameOfABCVariable);&lt;BR /&gt;&lt;BR /&gt;Therefore, could you please guide or help in setting this up or is there any example available then kindly share.&lt;BR /&gt;&lt;BR /&gt;Quick help must be appreciated.&lt;/P&gt;
&lt;DIV class="cm-attachments-body"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV class="cm-comment-footer cm-common-light-color f-16px ng-scope" data-ng-if="!comment.showEditMode"&gt;
&lt;DIV class="helpful cm-action"&gt;&lt;SPAN class="cm-action-item-color ng-scope" data-ng-if="!comment.canMarkHelpful &amp;amp;&amp;amp; c.data.isLoggedIn"&gt; Helpful &lt;SPAN class="cm-common-dark-color ng-binding ng-scope" data-ng-if="comment.helpful_count == 0"&gt;(0) &lt;/SPAN&gt; &lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV class="reply cm-action" data-ng-class="c.post.showEditMode ? 'cm-disable-comment': ''"&gt;&lt;A class="ng-scope cm-action-item-color cm-button-link" tabindex="0" data-ng-if="(c.post.canReply &amp;amp;&amp;amp; c.data.isLoggedIn)" data-ng-click="c.showReplyBox(comment,!comment.showReplyBox,1, ('ccq_answerEditor_'+ $index))"&gt; Reply &lt;/A&gt;&lt;/DIV&gt;
&lt;DIV class="mark-correct cm-action"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 27 May 2021 23:12:54 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/how-to-access-the-display-value-for-a-catalog-variable-in-flow/m-p/1227575#M169284</guid>
      <dc:creator>manish123</dc:creator>
      <dc:date>2021-05-27T23:12:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to access the display value for a catalog variable in flow designer (Create catalog task)</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/how-to-access-the-display-value-for-a-catalog-variable-in-flow/m-p/1227576#M169285</link>
      <description>&lt;DIV class="cm-comment-container pull-right" data-ng-class="isMobileView() ? 'mobile-view': 'pull-right'"&gt;
&lt;DIV class="cm-comment-text cm-comment-view-mode ng-scope" data-ng-if="!comment.showEditMode"&gt;
&lt;DIV class="cm-comment-body"&gt;
&lt;DIV class="cm-comment-text-info"&gt;
&lt;P&gt;Hi Pradeep,&lt;BR /&gt;&lt;BR /&gt;I have a query, My requirement is to set the variable value in RITM for the specific Catalog Item.&lt;BR /&gt;&lt;BR /&gt;I created the trigger as Service Catalog, Action Get Catalog Variable from HR Job Profile (Catalog Item). And selected all the variables there too. But got stuck in the step to set the variable's value.&lt;BR /&gt;&lt;BR /&gt;Suppose, I have a checkbox variable i.e. "ABC" and like to set "True".&lt;BR /&gt;&lt;BR /&gt;I tried with Run Script but still no luck.&lt;BR /&gt;var nameOfABCVariable = fd_data._1__get_catalog_variables.abc.getName();&lt;BR /&gt;&lt;BR /&gt;gs.log("abc name: " + nameOfABCVariable);&lt;BR /&gt;&lt;BR /&gt;In log, it's printing as undefined.&lt;BR /&gt;&lt;BR /&gt;However, if I used like this then it returns as true even it is not defined by the user in the RITM record.&lt;BR /&gt;var nameOfABCVariable = fd_data._1__get_catalog_variables.abc;&lt;BR /&gt;&lt;BR /&gt;gs.log("abc name: " + nameOfABCVariable);&lt;BR /&gt;&lt;BR /&gt;Therefore, could you please guide or help in setting this up or is there any example available then kindly share.&lt;BR /&gt;&lt;BR /&gt;Quick help must be appreciated.&lt;/P&gt;
&lt;DIV class="cm-attachments-body"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV class="cm-comment-footer cm-common-light-color f-16px ng-scope" data-ng-if="!comment.showEditMode"&gt;
&lt;DIV class="helpful cm-action"&gt;&lt;SPAN class="cm-action-item-color ng-scope" data-ng-if="!comment.canMarkHelpful &amp;amp;&amp;amp; c.data.isLoggedIn"&gt; Helpful &lt;SPAN class="cm-common-dark-color ng-binding ng-scope" data-ng-if="comment.helpful_count == 0"&gt;(0) &lt;/SPAN&gt; &lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV class="reply cm-action" data-ng-class="c.post.showEditMode ? 'cm-disable-comment': ''"&gt;&lt;A class="ng-scope cm-action-item-color cm-button-link" tabindex="0" data-ng-if="(c.post.canReply &amp;amp;&amp;amp; c.data.isLoggedIn)" data-ng-click="c.showReplyBox(comment,!comment.showReplyBox,1, ('ccq_answerEditor_'+ $index))"&gt; Reply &lt;/A&gt;&lt;/DIV&gt;
&lt;DIV class="mark-correct cm-action"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 27 May 2021 23:13:24 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/how-to-access-the-display-value-for-a-catalog-variable-in-flow/m-p/1227576#M169285</guid>
      <dc:creator>manish123</dc:creator>
      <dc:date>2021-05-27T23:13:24Z</dc:date>
    </item>
  </channel>
</rss>

