<?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: Is there any option to rename filed label based on condition in Service Management forum</title>
    <link>https://www.servicenow.com/community/service-management-forum/is-there-any-option-to-rename-filed-label-based-on-condition/m-p/390772#M12037</link>
    <description>&lt;P&gt;Hi there,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Search in Client scripts for Modify Comments Label and see that the&amp;nbsp;getLabelOf and setLabelOf APIs are being used to accomplish this.&lt;/P&gt;
&lt;P&gt;Check the APIs on the Developers site&amp;nbsp;https://developer.servicenow.com/app.do#!/api_doc?v=london&amp;amp;id=r_GlideFormSetLabelOf_String_String for more information.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps,&lt;/P&gt;
&lt;P&gt;Bogdan Pirsan&lt;/P&gt;</description>
    <pubDate>Tue, 05 Feb 2019 11:11:00 GMT</pubDate>
    <dc:creator>Bogdan18</dc:creator>
    <dc:date>2019-02-05T11:11:00Z</dc:date>
    <item>
      <title>Is there any option to rename filed label based on condition</title>
      <link>https://www.servicenow.com/community/service-management-forum/is-there-any-option-to-rename-filed-label-based-on-condition/m-p/390771#M12036</link>
      <description>&lt;P&gt;Is there any option to rename filed label based on condition&lt;/P&gt;</description>
      <pubDate>Tue, 05 Feb 2019 10:09:10 GMT</pubDate>
      <guid>https://www.servicenow.com/community/service-management-forum/is-there-any-option-to-rename-filed-label-based-on-condition/m-p/390771#M12036</guid>
      <dc:creator>akhila13</dc:creator>
      <dc:date>2019-02-05T10:09:10Z</dc:date>
    </item>
    <item>
      <title>Re: Is there any option to rename filed label based on condition</title>
      <link>https://www.servicenow.com/community/service-management-forum/is-there-any-option-to-rename-filed-label-based-on-condition/m-p/390772#M12037</link>
      <description>&lt;P&gt;Hi there,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Search in Client scripts for Modify Comments Label and see that the&amp;nbsp;getLabelOf and setLabelOf APIs are being used to accomplish this.&lt;/P&gt;
&lt;P&gt;Check the APIs on the Developers site&amp;nbsp;https://developer.servicenow.com/app.do#!/api_doc?v=london&amp;amp;id=r_GlideFormSetLabelOf_String_String for more information.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps,&lt;/P&gt;
&lt;P&gt;Bogdan Pirsan&lt;/P&gt;</description>
      <pubDate>Tue, 05 Feb 2019 11:11:00 GMT</pubDate>
      <guid>https://www.servicenow.com/community/service-management-forum/is-there-any-option-to-rename-filed-label-based-on-condition/m-p/390772#M12037</guid>
      <dc:creator>Bogdan18</dc:creator>
      <dc:date>2019-02-05T11:11:00Z</dc:date>
    </item>
    <item>
      <title>Re: Is there any option to rename filed label based on condition</title>
      <link>https://www.servicenow.com/community/service-management-forum/is-there-any-option-to-rename-filed-label-based-on-condition/m-p/390773#M12038</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;In a client script you can script your condition and set the field label using&lt;/P&gt;
&lt;PRE class="language-markup"&gt;&lt;CODE&gt;g_form.setLabelOf('field_name','New Label');&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Feb 2019 15:12:24 GMT</pubDate>
      <guid>https://www.servicenow.com/community/service-management-forum/is-there-any-option-to-rename-filed-label-based-on-condition/m-p/390773#M12038</guid>
      <dc:creator>Barbara L - Gli</dc:creator>
      <dc:date>2019-02-05T15:12:24Z</dc:date>
    </item>
    <item>
      <title>Re: Is there any option to rename filed label based on condition</title>
      <link>https://www.servicenow.com/community/service-management-forum/is-there-any-option-to-rename-filed-label-based-on-condition/m-p/390774#M12039</link>
      <description>&lt;P&gt;Thanks Barbara.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is there any way to get the new field label in the report&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Feb 2019 05:21:16 GMT</pubDate>
      <guid>https://www.servicenow.com/community/service-management-forum/is-there-any-option-to-rename-filed-label-based-on-condition/m-p/390774#M12039</guid>
      <dc:creator>akhila13</dc:creator>
      <dc:date>2019-02-06T05:21:16Z</dc:date>
    </item>
    <item>
      <title>Re: Is there any option to rename filed label based on condition</title>
      <link>https://www.servicenow.com/community/service-management-forum/is-there-any-option-to-rename-filed-label-based-on-condition/m-p/390775#M12040</link>
      <description>&lt;P&gt;Hi Akhila,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can achieve this by using client script. Give your condition and write the below script.&lt;/P&gt;
&lt;P&gt;g_form.setLabelOf('your_field_name', 'your_new_label');&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Please mark my answer correct if you found it helpful/correct&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Ritanjali&lt;/P&gt;
&lt;P&gt;www.dxsherpa.com&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Feb 2019 05:40:06 GMT</pubDate>
      <guid>https://www.servicenow.com/community/service-management-forum/is-there-any-option-to-rename-filed-label-based-on-condition/m-p/390775#M12040</guid>
      <dc:creator>Ritanjali Pati</dc:creator>
      <dc:date>2019-02-06T05:40:06Z</dc:date>
    </item>
    <item>
      <title>Re: Is there any option to rename filed label based on condition</title>
      <link>https://www.servicenow.com/community/service-management-forum/is-there-any-option-to-rename-filed-label-based-on-condition/m-p/390776#M12041</link>
      <description>&lt;P&gt;Using this method there wouldn't be a way to get it to show up in reports, it would only change it client side in form view.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you can give some more details about what you're trying to accomplish with this functionality that could be a help in figuring out how to go about it&lt;/P&gt;</description>
      <pubDate>Wed, 06 Feb 2019 14:37:33 GMT</pubDate>
      <guid>https://www.servicenow.com/community/service-management-forum/is-there-any-option-to-rename-filed-label-based-on-condition/m-p/390776#M12041</guid>
      <dc:creator>Barbara L - Gli</dc:creator>
      <dc:date>2019-02-06T14:37:33Z</dc:date>
    </item>
    <item>
      <title>Re: Is there any option to rename filed label based on condition</title>
      <link>https://www.servicenow.com/community/service-management-forum/is-there-any-option-to-rename-filed-label-based-on-condition/m-p/390777#M12042</link>
      <description>&lt;P&gt;Hi Barbar,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;in change table there is a field call&lt;STRONG&gt; description&lt;/STRONG&gt;. i need to change that field label to &lt;STRONG&gt;details&lt;/STRONG&gt; and while pulling the change report also the label should be details instead of description.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Feb 2019 19:00:23 GMT</pubDate>
      <guid>https://www.servicenow.com/community/service-management-forum/is-there-any-option-to-rename-filed-label-based-on-condition/m-p/390777#M12042</guid>
      <dc:creator>akhila13</dc:creator>
      <dc:date>2019-02-06T19:00:23Z</dc:date>
    </item>
    <item>
      <title>Re: Is there any option to rename filed label based on condition</title>
      <link>https://www.servicenow.com/community/service-management-forum/is-there-any-option-to-rename-filed-label-based-on-condition/m-p/390778#M12043</link>
      <description>&lt;P&gt;Akhila,&lt;/P&gt;
&lt;P&gt;If you'd like 'Description' to always appear as 'Details' for all change requests:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Right click on 'Description', select 'Configure Label'. This will pull up the Field Label record for all task and task extended tables. Change the 'Table' field to the change_request table, change the label to 'Detail', right click on the header and insert a record.&lt;/P&gt;
&lt;P&gt;This will change the Description label for ONLY change requests and not all tasks.&lt;/P&gt;
&lt;P&gt;It&amp;nbsp;should show up in reports, as it's changing it server side. Definitely test it out though to be sure, I don't do a lot of reporting.&lt;/P&gt;
&lt;P&gt;Hope this is what you need!&lt;/P&gt;</description>
      <pubDate>Wed, 06 Feb 2019 19:29:17 GMT</pubDate>
      <guid>https://www.servicenow.com/community/service-management-forum/is-there-any-option-to-rename-filed-label-based-on-condition/m-p/390778#M12043</guid>
      <dc:creator>Barbara L - Gli</dc:creator>
      <dc:date>2019-02-06T19:29:17Z</dc:date>
    </item>
    <item>
      <title>Re: Is there any option to rename filed label based on condition</title>
      <link>https://www.servicenow.com/community/service-management-forum/is-there-any-option-to-rename-filed-label-based-on-condition/m-p/3436824#M38643</link>
      <description>&lt;P&gt;for workspace it will not work&lt;/P&gt;</description>
      <pubDate>Tue, 25 Nov 2025 06:46:40 GMT</pubDate>
      <guid>https://www.servicenow.com/community/service-management-forum/is-there-any-option-to-rename-filed-label-based-on-condition/m-p/3436824#M38643</guid>
      <dc:creator>armanoj</dc:creator>
      <dc:date>2025-11-25T06:46:40Z</dc:date>
    </item>
  </channel>
</rss>

