<?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: How hide some fields from &amp;quot;i&amp;quot; or &amp;quot;Info&amp;quot; button on Requested for catalog item in Developer forum</title>
    <link>https://www.servicenow.com/community/developer-forum/how-hide-some-fields-from-quot-i-quot-or-quot-info-quot-button/m-p/3121617#M1163718</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/288821"&gt;@Ken61&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://support.servicenow.com/kb?id=kb_article_view&amp;amp;sysparm_article=KB0823295" target="_blank"&gt;https://support.servicenow.com/kb?id=kb_article_view&amp;amp;sysparm_article=KB0823295&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 06 Dec 2024 14:55:59 GMT</pubDate>
    <dc:creator>Dr Atul G- LNG</dc:creator>
    <dc:date>2024-12-06T14:55:59Z</dc:date>
    <item>
      <title>How hide some fields from "i" or "Info" button on Requested for catalog item variable in the portal</title>
      <link>https://www.servicenow.com/community/developer-forum/how-hide-some-fields-from-quot-i-quot-or-quot-info-quot-button/m-p/3120967#M1163549</link>
      <description>&lt;P&gt;Hello Community,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a requirement to hide some fields from "i" or "Info" button on "Requested for" or "Requestor" catalog item variable in the portal.&amp;nbsp;Because when it is a request for, one user can choose another and should not be able to see all the fields of the other user. This is only applicable to service portal. Below is the screenshot&amp;nbsp;&lt;/P&gt;&lt;P&gt;How can I be able to hide some important fields and only display few user information.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ken61_0-1733453706812.png"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/406008iB14349320936F974/image-size/medium?v=v2&amp;amp;px=400" alt="Ken61_0-1733453706812.png" title="Ken61_0-1733453706812.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Thank You&lt;/P&gt;</description>
      <pubDate>Fri, 06 Dec 2024 02:56:26 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/how-hide-some-fields-from-quot-i-quot-or-quot-info-quot-button/m-p/3120967#M1163549</guid>
      <dc:creator>Ken61</dc:creator>
      <dc:date>2024-12-06T02:56:26Z</dc:date>
    </item>
    <item>
      <title>Re: How hide some fields from "i" or "Info" button on Requested for catalog item</title>
      <link>https://www.servicenow.com/community/developer-forum/how-hide-some-fields-from-quot-i-quot-or-quot-info-quot-button/m-p/3121001#M1163554</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/288821"&gt;@Ken61&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To hide the reference field Information icon.&lt;/P&gt;&lt;P&gt;Navigate to sp_page.list and open sc_cat_item page&lt;/P&gt;&lt;P&gt;Add below code in CSS field of the page&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;.field-has-reference &amp;gt; div.add-on &amp;gt; button {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;display : none;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;above configuration is applicable for all users(including admin), there is no method to apply the logic based on user role.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;or you want to do for specific variable then follow this step&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;update the css on sc_cat_item page with for specific variable then copy id using console&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bhavya11_0-1733460628062.png"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/406022i81E49982162952F1/image-size/medium?v=v2&amp;amp;px=400" alt="Bhavya11_0-1733460628062.png" title="Bhavya11_0-1733460628062.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;#sp_formfield_reference_group_name &amp;gt; div.add-on &amp;gt;&lt;SPAN&gt;button { /&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;display : none;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;In the CSS field add the above CSS code (replace "sp_formfield_reference_hiring_manager" with your ID value)Save and then reload portal page&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Dec 2024 04:51:20 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/how-hide-some-fields-from-quot-i-quot-or-quot-info-quot-button/m-p/3121001#M1163554</guid>
      <dc:creator>Bhavya11</dc:creator>
      <dc:date>2024-12-06T04:51:20Z</dc:date>
    </item>
    <item>
      <title>Re: How hide some fields from "i" or "Info" button on Requested for catalog item</title>
      <link>https://www.servicenow.com/community/developer-forum/how-hide-some-fields-from-quot-i-quot-or-quot-info-quot-button/m-p/3121167#M1163589</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/288821"&gt;@Ken61&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It is sys_userpopup . You need to make changes in sys pop up view and its done.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Dec 2024 08:48:15 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/how-hide-some-fields-from-quot-i-quot-or-quot-info-quot-button/m-p/3121167#M1163589</guid>
      <dc:creator>Dr Atul G- LNG</dc:creator>
      <dc:date>2024-12-06T08:48:15Z</dc:date>
    </item>
    <item>
      <title>Re: How hide some fields from "i" or "Info" button on Requested for catalog item</title>
      <link>https://www.servicenow.com/community/developer-forum/how-hide-some-fields-from-quot-i-quot-or-quot-info-quot-button/m-p/3121271#M1163626</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/288821"&gt;@Ken61&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&amp;nbsp;1. Nav&lt;SPAN&gt;igate to the&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;sys_user&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;table.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;2.&amp;nbsp;Right-click on the list header, and choose&amp;nbsp;&lt;STRONG&gt;Configure-&amp;gt;Form Layout&lt;/STRONG&gt;.&amp;nbsp;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;In the "Form view and section" area, select the&amp;nbsp;&lt;STRONG&gt;View name&lt;/STRONG&gt;&amp;nbsp;drop-down list and select "&lt;EM&gt;&lt;STRONG&gt;Sys_popup&lt;/STRONG&gt;&lt;/EM&gt;".&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Shruti_19_1-1733481512769.png"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/406101iC030F94272C41024/image-size/medium?v=v2&amp;amp;px=400" alt="Shruti_19_1-1733481512769.png" title="Shruti_19_1-1733481512769.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;3.&amp;nbsp;Add/remove fields for sys_popup view from slush bucket and configure it as per requirements. Now click on&amp;nbsp;&lt;STRONG&gt;Save.&lt;BR /&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Please Mark Correct &lt;span class="lia-unicode-emoji" title=":heavy_check_mark:"&gt;✔️&lt;/span&gt;if this solves your query and also mark Helpful &lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt; if you find my response worthy based on the impact.&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Regards,&lt;/STRONG&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;STRONG&gt;Shruti&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Dec 2024 10:43:52 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/how-hide-some-fields-from-quot-i-quot-or-quot-info-quot-button/m-p/3121271#M1163626</guid>
      <dc:creator>Shruti D</dc:creator>
      <dc:date>2024-12-06T10:43:52Z</dc:date>
    </item>
    <item>
      <title>Re: How hide some fields from "i" or "Info" button on Requested for catalog item</title>
      <link>https://www.servicenow.com/community/developer-forum/how-hide-some-fields-from-quot-i-quot-or-quot-info-quot-button/m-p/3121606#M1163715</link>
      <description>&lt;P&gt;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/517029"&gt;@Shruti D&lt;/a&gt;&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/174084"&gt;@Dr Atul G- LNG&lt;/a&gt;&amp;nbsp; Thanks for your response, but I did not have sys_popup in the view area.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Dec 2024 14:44:53 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/how-hide-some-fields-from-quot-i-quot-or-quot-info-quot-button/m-p/3121606#M1163715</guid>
      <dc:creator>Ken61</dc:creator>
      <dc:date>2024-12-06T14:44:53Z</dc:date>
    </item>
    <item>
      <title>Re: How hide some fields from "i" or "Info" button on Requested for catalog item</title>
      <link>https://www.servicenow.com/community/developer-forum/how-hide-some-fields-from-quot-i-quot-or-quot-info-quot-button/m-p/3121617#M1163718</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/288821"&gt;@Ken61&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://support.servicenow.com/kb?id=kb_article_view&amp;amp;sysparm_article=KB0823295" target="_blank"&gt;https://support.servicenow.com/kb?id=kb_article_view&amp;amp;sysparm_article=KB0823295&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Dec 2024 14:55:59 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/how-hide-some-fields-from-quot-i-quot-or-quot-info-quot-button/m-p/3121617#M1163718</guid>
      <dc:creator>Dr Atul G- LNG</dc:creator>
      <dc:date>2024-12-06T14:55:59Z</dc:date>
    </item>
  </channel>
</rss>

