<?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: Service catalog in Incident Management forum</title>
    <link>https://www.servicenow.com/community/incident-management-forum/service-catalog/m-p/3341314#M12197</link>
    <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/746347"&gt;@garimakharb&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The functionality you're looking for—populating the logged-in user's name in a &lt;STRONG data-start="249" data-end="268"&gt;Rich Text Label&lt;/STRONG&gt;—is &lt;STRONG&gt;not directly possible&lt;/STRONG&gt;. Rich Text Label variables in Service Catalog don't support scripting or dynamic updates, so you can't inject something like the user's display name into them using &lt;STRONG&gt;setValue()&lt;/STRONG&gt;&amp;nbsp;or similar methods.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-start="493" data-end="707"&gt;However, there is a workaround using a &lt;STRONG data-start="546" data-end="556"&gt;Custom&lt;/STRONG&gt;&amp;nbsp;type variable with a &lt;STRONG data-start="579" data-end="604"&gt;Service Portal widget&lt;/STRONG&gt;. This allows you to display dynamic text, like showing a welcome message with the current user's name.&lt;/P&gt;
&lt;P data-start="709" data-end="734"&gt;Here’s how you can do it:&lt;/P&gt;
&lt;P data-start="709" data-end="734"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-start="736" data-end="770"&gt;&lt;STRONG data-start="736" data-end="770"&gt;Step 1: Create a custom widget&lt;/STRONG&gt;&lt;/P&gt;
&lt;OL data-start="772" data-end="912"&gt;
&lt;LI data-start="772" data-end="828"&gt;
&lt;P data-start="775" data-end="828"&gt;Navigate to Service Portal &amp;gt; Widgets and click "New".&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="829" data-end="876"&gt;
&lt;P data-start="832" data-end="876"&gt;Give it a name like “Display User Greeting”.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="877" data-end="912"&gt;
&lt;P data-start="880" data-end="912"&gt;In the HTML Template field, add:&lt;/P&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;LI-CODE lang="markup"&gt;&amp;lt;div&amp;gt;
  &amp;lt;p&amp;gt;Welcome, {{data.user_name}}&amp;lt;/p&amp;gt;
&amp;lt;/div&amp;gt;
&lt;/LI-CODE&gt;
&lt;P&gt;4 . In the Server Script field, add:&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;(function() {
    data.user_name = gs.getUserDisplayName();
})();&lt;/LI-CODE&gt;
&lt;P&gt;5.&amp;nbsp;Submit the widget.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-start="1118" data-end="1181"&gt;&lt;STRONG data-start="1118" data-end="1181"&gt;Step 2: Add a Macro or Custom variable to your catalog item&lt;/STRONG&gt;&lt;/P&gt;
&lt;OL data-start="1183" data-end="1466"&gt;
&lt;LI data-start="1183" data-end="1228"&gt;
&lt;P data-start="1186" data-end="1228"&gt;Open your catalog item or record producer.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="1229" data-end="1259"&gt;
&lt;P data-start="1232" data-end="1259"&gt;Under Variables, click New.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="1260" data-end="1343"&gt;
&lt;P data-start="1263" data-end="1343"&gt;Set the Type as “Custom”.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="1344" data-end="1410"&gt;
&lt;P data-start="1347" data-end="1410"&gt;In the Type Specifications, choose the widget you just created.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="1411" data-end="1466"&gt;
&lt;P data-start="1414" data-end="1466"&gt;Fill out the rest of the details as needed and save.&lt;/P&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;P data-start="1468" data-end="1562"&gt;Now when the item loads in the portal, the user should see a greeting message with their name.&lt;/P&gt;
&lt;P data-start="1468" data-end="1562"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-start="1564" data-end="1761"&gt;This approach was also discussed in another &lt;STRONG&gt;&lt;A href="https://www.servicenow.com/community/itsm-forum/display-logged-in-user-name-in-quot-rich-text-label-quot-html/td-p/683524" target="_blank" rel="noopener"&gt;thread by Michael Jones&lt;/A&gt;&lt;/STRONG&gt; where he shared a similar solution. It matches your use case quite well, so I’d recommend checking that out too for more clarity.&lt;/P&gt;
&lt;P data-start="1564" data-end="1761"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-start="1763" data-end="1817" data-is-last-node="" data-is-only-node=""&gt;Let me know if this helps.......&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":small_blue_diamond:"&gt;🔹&lt;/span&gt;&lt;EM&gt;&lt;STRONG&gt; Please mark &lt;/STRONG&gt;&lt;/EM&gt;&lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt;&lt;EM&gt;&lt;STRONG&gt; Correct if this solves your query, and &lt;/STRONG&gt;&lt;/EM&gt;&lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt;&lt;EM&gt;&lt;STRONG&gt; Helpful if you found the response valuable.&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;BR /&gt;Aniket Chavan&lt;BR /&gt;&lt;span class="lia-unicode-emoji" title=":trophy:"&gt;🏆&lt;/span&gt; &lt;EM&gt;&lt;STRONG&gt;ServiceNow MVP 2025 | &lt;/STRONG&gt;&lt;/EM&gt;&lt;span class="lia-unicode-emoji" title=":glowing_star:"&gt;🌟&lt;/span&gt;&lt;EM&gt;&lt;STRONG&gt; ServiceNow Rising Star 2024&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 01 Aug 2025 10:52:47 GMT</pubDate>
    <dc:creator>AniketC85155510</dc:creator>
    <dc:date>2025-08-01T10:52:47Z</dc:date>
    <item>
      <title>Service catalog</title>
      <link>https://www.servicenow.com/community/incident-management-forum/service-catalog/m-p/3341278#M12189</link>
      <description>&lt;P&gt;I have a rich text label field.&amp;nbsp; I have to populate the logged in user in this field. Its urgent anybody could help?&lt;/P&gt;</description>
      <pubDate>Fri, 01 Aug 2025 10:25:15 GMT</pubDate>
      <guid>https://www.servicenow.com/community/incident-management-forum/service-catalog/m-p/3341278#M12189</guid>
      <dc:creator>garimakharb</dc:creator>
      <dc:date>2025-08-01T10:25:15Z</dc:date>
    </item>
    <item>
      <title>Re: Service catalog</title>
      <link>https://www.servicenow.com/community/incident-management-forum/service-catalog/m-p/3341281#M12190</link>
      <description>&lt;P&gt;&lt;A href="https://www.servicenow.com/community/servicenow-ai-platform-forum/how-to-auto-populate-the-logged-in-user-details-in-the-catalog/m-p/1022469" target="_blank"&gt;https://www.servicenow.com/community/servicenow-ai-platform-forum/how-to-auto-populate-the-logged-in-user-details-in-the-catalog/m-p/1022469&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Aug 2025 10:26:22 GMT</pubDate>
      <guid>https://www.servicenow.com/community/incident-management-forum/service-catalog/m-p/3341281#M12190</guid>
      <dc:creator>Dr Atul G- LNG</dc:creator>
      <dc:date>2025-08-01T10:26:22Z</dc:date>
    </item>
    <item>
      <title>Re: Service catalog</title>
      <link>https://www.servicenow.com/community/incident-management-forum/service-catalog/m-p/3341288#M12191</link>
      <description>&lt;P&gt;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/174084"&gt;@Dr Atul G- LNG&lt;/a&gt;&amp;nbsp; No need to give wrong solution in hurry. Read my question carefully. I am talking about Rich text label field&lt;/P&gt;</description>
      <pubDate>Fri, 01 Aug 2025 10:31:35 GMT</pubDate>
      <guid>https://www.servicenow.com/community/incident-management-forum/service-catalog/m-p/3341288#M12191</guid>
      <dc:creator>garimakharb</dc:creator>
      <dc:date>2025-08-01T10:31:35Z</dc:date>
    </item>
    <item>
      <title>Re: Service catalog</title>
      <link>https://www.servicenow.com/community/incident-management-forum/service-catalog/m-p/3341294#M12192</link>
      <description>&lt;P&gt;My bad.. sorry for this.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Why do you need to pass the logged-in user to the rich text field? Here's a video reference for using a Reference field — see if that approach works for your use case.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.youtube.com/watch?v=8jvrvdx5F2Y" target="_blank"&gt;https://www.youtube.com/watch?v=8jvrvdx5F2Y&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Aug 2025 10:35:58 GMT</pubDate>
      <guid>https://www.servicenow.com/community/incident-management-forum/service-catalog/m-p/3341294#M12192</guid>
      <dc:creator>Dr Atul G- LNG</dc:creator>
      <dc:date>2025-08-01T10:35:58Z</dc:date>
    </item>
    <item>
      <title>Re: Service catalog</title>
      <link>https://www.servicenow.com/community/incident-management-forum/service-catalog/m-p/3341301#M12193</link>
      <description>&lt;P&gt;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/174084"&gt;@Dr Atul G- LNG&lt;/a&gt;&amp;nbsp; I Know how to populate logged in user. I am talking specifically about rich text variable type&lt;/P&gt;</description>
      <pubDate>Fri, 01 Aug 2025 10:44:55 GMT</pubDate>
      <guid>https://www.servicenow.com/community/incident-management-forum/service-catalog/m-p/3341301#M12193</guid>
      <dc:creator>garimakharb</dc:creator>
      <dc:date>2025-08-01T10:44:55Z</dc:date>
    </item>
    <item>
      <title>Re: Service catalog</title>
      <link>https://www.servicenow.com/community/incident-management-forum/service-catalog/m-p/3341302#M12194</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/746347"&gt;@garimakharb&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Risch text label field is nothing but a HTML field.&lt;BR /&gt;So, create on_load client script and use GlideUser class to fetch the basic info like&amp;nbsp;&lt;SPAN&gt;First name,&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;Full name,&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;Last name,&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;User ID,&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;User name.&lt;BR /&gt;To get other infos like manager, department etc, then create client callable script include and use it in your client script.&lt;BR /&gt;Review this approach and let me know if you have any queiries..&lt;BR /&gt;Regards,&lt;BR /&gt;Siva&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Aug 2025 10:45:04 GMT</pubDate>
      <guid>https://www.servicenow.com/community/incident-management-forum/service-catalog/m-p/3341302#M12194</guid>
      <dc:creator>J Siva</dc:creator>
      <dc:date>2025-08-01T10:45:04Z</dc:date>
    </item>
    <item>
      <title>Re: Service catalog</title>
      <link>https://www.servicenow.com/community/incident-management-forum/service-catalog/m-p/3341306#M12195</link>
      <description>&lt;P&gt;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/662411"&gt;@J Siva&lt;/a&gt;&amp;nbsp;Can you provide my the OnLoad client script? which can actually work?&lt;/P&gt;</description>
      <pubDate>Fri, 01 Aug 2025 10:46:55 GMT</pubDate>
      <guid>https://www.servicenow.com/community/incident-management-forum/service-catalog/m-p/3341306#M12195</guid>
      <dc:creator>garimakharb</dc:creator>
      <dc:date>2025-08-01T10:46:55Z</dc:date>
    </item>
    <item>
      <title>Re: Service catalog</title>
      <link>https://www.servicenow.com/community/incident-management-forum/service-catalog/m-p/3341313#M12196</link>
      <description>&lt;P&gt;Hello&amp;nbsp; &lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/746347"&gt;@garimakharb&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;I think there is scripting limitation for Rich Text Label type of field.&lt;/P&gt;&lt;P&gt;Instead you might have to use macro as suggested&amp;nbsp; as a workaround (in below thread).&lt;/P&gt;&lt;P&gt;Check this &lt;A href="https://www.servicenow.com/community/itsm-forum/display-logged-in-user-name-in-quot-rich-text-label-quot-html/td-p/683524" target="_blank" rel="noopener"&gt;thread&lt;/A&gt; , as similar thing is discussed here.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope this helps&lt;/P&gt;</description>
      <pubDate>Fri, 01 Aug 2025 10:52:57 GMT</pubDate>
      <guid>https://www.servicenow.com/community/incident-management-forum/service-catalog/m-p/3341313#M12196</guid>
      <dc:creator>JerryJ071847183</dc:creator>
      <dc:date>2025-08-01T10:52:57Z</dc:date>
    </item>
    <item>
      <title>Re: Service catalog</title>
      <link>https://www.servicenow.com/community/incident-management-forum/service-catalog/m-p/3341314#M12197</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/746347"&gt;@garimakharb&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The functionality you're looking for—populating the logged-in user's name in a &lt;STRONG data-start="249" data-end="268"&gt;Rich Text Label&lt;/STRONG&gt;—is &lt;STRONG&gt;not directly possible&lt;/STRONG&gt;. Rich Text Label variables in Service Catalog don't support scripting or dynamic updates, so you can't inject something like the user's display name into them using &lt;STRONG&gt;setValue()&lt;/STRONG&gt;&amp;nbsp;or similar methods.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-start="493" data-end="707"&gt;However, there is a workaround using a &lt;STRONG data-start="546" data-end="556"&gt;Custom&lt;/STRONG&gt;&amp;nbsp;type variable with a &lt;STRONG data-start="579" data-end="604"&gt;Service Portal widget&lt;/STRONG&gt;. This allows you to display dynamic text, like showing a welcome message with the current user's name.&lt;/P&gt;
&lt;P data-start="709" data-end="734"&gt;Here’s how you can do it:&lt;/P&gt;
&lt;P data-start="709" data-end="734"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-start="736" data-end="770"&gt;&lt;STRONG data-start="736" data-end="770"&gt;Step 1: Create a custom widget&lt;/STRONG&gt;&lt;/P&gt;
&lt;OL data-start="772" data-end="912"&gt;
&lt;LI data-start="772" data-end="828"&gt;
&lt;P data-start="775" data-end="828"&gt;Navigate to Service Portal &amp;gt; Widgets and click "New".&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="829" data-end="876"&gt;
&lt;P data-start="832" data-end="876"&gt;Give it a name like “Display User Greeting”.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="877" data-end="912"&gt;
&lt;P data-start="880" data-end="912"&gt;In the HTML Template field, add:&lt;/P&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;LI-CODE lang="markup"&gt;&amp;lt;div&amp;gt;
  &amp;lt;p&amp;gt;Welcome, {{data.user_name}}&amp;lt;/p&amp;gt;
&amp;lt;/div&amp;gt;
&lt;/LI-CODE&gt;
&lt;P&gt;4 . In the Server Script field, add:&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;(function() {
    data.user_name = gs.getUserDisplayName();
})();&lt;/LI-CODE&gt;
&lt;P&gt;5.&amp;nbsp;Submit the widget.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-start="1118" data-end="1181"&gt;&lt;STRONG data-start="1118" data-end="1181"&gt;Step 2: Add a Macro or Custom variable to your catalog item&lt;/STRONG&gt;&lt;/P&gt;
&lt;OL data-start="1183" data-end="1466"&gt;
&lt;LI data-start="1183" data-end="1228"&gt;
&lt;P data-start="1186" data-end="1228"&gt;Open your catalog item or record producer.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="1229" data-end="1259"&gt;
&lt;P data-start="1232" data-end="1259"&gt;Under Variables, click New.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="1260" data-end="1343"&gt;
&lt;P data-start="1263" data-end="1343"&gt;Set the Type as “Custom”.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="1344" data-end="1410"&gt;
&lt;P data-start="1347" data-end="1410"&gt;In the Type Specifications, choose the widget you just created.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="1411" data-end="1466"&gt;
&lt;P data-start="1414" data-end="1466"&gt;Fill out the rest of the details as needed and save.&lt;/P&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;P data-start="1468" data-end="1562"&gt;Now when the item loads in the portal, the user should see a greeting message with their name.&lt;/P&gt;
&lt;P data-start="1468" data-end="1562"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-start="1564" data-end="1761"&gt;This approach was also discussed in another &lt;STRONG&gt;&lt;A href="https://www.servicenow.com/community/itsm-forum/display-logged-in-user-name-in-quot-rich-text-label-quot-html/td-p/683524" target="_blank" rel="noopener"&gt;thread by Michael Jones&lt;/A&gt;&lt;/STRONG&gt; where he shared a similar solution. It matches your use case quite well, so I’d recommend checking that out too for more clarity.&lt;/P&gt;
&lt;P data-start="1564" data-end="1761"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-start="1763" data-end="1817" data-is-last-node="" data-is-only-node=""&gt;Let me know if this helps.......&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":small_blue_diamond:"&gt;🔹&lt;/span&gt;&lt;EM&gt;&lt;STRONG&gt; Please mark &lt;/STRONG&gt;&lt;/EM&gt;&lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt;&lt;EM&gt;&lt;STRONG&gt; Correct if this solves your query, and &lt;/STRONG&gt;&lt;/EM&gt;&lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt;&lt;EM&gt;&lt;STRONG&gt; Helpful if you found the response valuable.&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;BR /&gt;Aniket Chavan&lt;BR /&gt;&lt;span class="lia-unicode-emoji" title=":trophy:"&gt;🏆&lt;/span&gt; &lt;EM&gt;&lt;STRONG&gt;ServiceNow MVP 2025 | &lt;/STRONG&gt;&lt;/EM&gt;&lt;span class="lia-unicode-emoji" title=":glowing_star:"&gt;🌟&lt;/span&gt;&lt;EM&gt;&lt;STRONG&gt; ServiceNow Rising Star 2024&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Aug 2025 10:52:47 GMT</pubDate>
      <guid>https://www.servicenow.com/community/incident-management-forum/service-catalog/m-p/3341314#M12197</guid>
      <dc:creator>AniketC85155510</dc:creator>
      <dc:date>2025-08-01T10:52:47Z</dc:date>
    </item>
    <item>
      <title>Re: Service catalog</title>
      <link>https://www.servicenow.com/community/incident-management-forum/service-catalog/m-p/3341315#M12198</link>
      <description>&lt;P&gt;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/746347"&gt;@garimakharb&lt;/a&gt;&amp;nbsp;Please note that this will work only in the service portal but not in the classic view.&lt;BR /&gt;We are using this and it's working fine without any issues in the service portal.&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var first_name = "&amp;lt;p&amp;gt; First Name: "+g_user.firstName+"&amp;lt;/p&amp;gt;";
g_form.setLabelOf("&amp;lt;rich_text_variable_name&amp;gt;",first_name );&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Aug 2025 10:59:02 GMT</pubDate>
      <guid>https://www.servicenow.com/community/incident-management-forum/service-catalog/m-p/3341315#M12198</guid>
      <dc:creator>J Siva</dc:creator>
      <dc:date>2025-08-01T10:59:02Z</dc:date>
    </item>
    <item>
      <title>Re: Service catalog</title>
      <link>https://www.servicenow.com/community/incident-management-forum/service-catalog/m-p/3341367#M12199</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have tried with rich text label. it doesn't work for that type.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;use 'reference" type and select user table for this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;write below catalog client script under catalog item :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;var&lt;/SPAN&gt;&lt;SPAN&gt; d = g_user.getFullName();&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; g_form.setValue(&lt;/SPAN&gt;&lt;SPAN&gt;'needed_person'&lt;/SPAN&gt;&lt;SPAN&gt;, d);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Needed Person --&amp;nbsp; (needed_person) ----name of the reference field&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Aug 2025 11:38:53 GMT</pubDate>
      <guid>https://www.servicenow.com/community/incident-management-forum/service-catalog/m-p/3341367#M12199</guid>
      <dc:creator>Havishc</dc:creator>
      <dc:date>2025-08-01T11:38:53Z</dc:date>
    </item>
  </channel>
</rss>

