<?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: Hide New Button the workspace and related list in Developer forum</title>
    <link>https://www.servicenow.com/community/developer-forum/hide-new-button-the-workspace-and-related-list/m-p/3271887#M1204366</link>
    <description>&lt;P&gt;@Community Alums&amp;nbsp;&lt;/P&gt;
&lt;P&gt;if you ensure correct table level CREATE ACLs are configured the buttons will be hidden for the users who don't satisfy the ACL.&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>Fri, 23 May 2025 05:59:59 GMT</pubDate>
    <dc:creator>Ankur Bawiskar</dc:creator>
    <dc:date>2025-05-23T05:59:59Z</dc:date>
    <item>
      <title>Hide New Button the workspace and related list</title>
      <link>https://www.servicenow.com/community/developer-forum/hide-new-button-the-workspace-and-related-list/m-p/3271822#M1204347</link>
      <description>&lt;P&gt;Hi Team,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have custom application developed and when I access the tables from workspace I can see the new button coming up on the list view and related list as well I have made changes to list control but it's working on platform but not on the workspace and portal I have tried to make changes on the list actions as well but as the tables or in scoped application when I make changes on the global record the scoped tables are not visible, please help me how can I hide the New button on scoped application.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Prudhvi&lt;/P&gt;</description>
      <pubDate>Fri, 23 May 2025 04:29:40 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/hide-new-button-the-workspace-and-related-list/m-p/3271822#M1204347</guid>
      <dc:creator>Community Alums</dc:creator>
      <dc:date>2025-05-23T04:29:40Z</dc:date>
    </item>
    <item>
      <title>Re: Hide New Button the workspace and related list</title>
      <link>https://www.servicenow.com/community/developer-forum/hide-new-button-the-workspace-and-related-list/m-p/3271850#M1204354</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Community Alums&amp;nbsp;,&lt;BR /&gt;It's a action assignment called create-new-uxf, which is applied for Global table so that you need to create a new Action Exclusion record for your related list table.&amp;nbsp;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2025-05-23 at 11.55.44.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/444367i629227F755EC2110/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screenshot 2025-05-23 at 11.55.44.png" alt="Screenshot 2025-05-23 at 11.55.44.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Find the action assignment in table&amp;nbsp;sys_declarative_action_assignment.&lt;BR /&gt;Maybe you need a script to create a new one&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var current = new GlideRecord("sys_workspace_declarative_action_exclusion");
current.initialize();
current.setValue("action_assignment", "5555b77273131010a0a79329faf6a780"); //id of Action Assignment create-new-uxf
current.setValue("table", &amp;lt;your_related_list_table&amp;gt;);
current.setValue("exclude_self", true);
current.insert();&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 23 May 2025 05:02:28 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/hide-new-button-the-workspace-and-related-list/m-p/3271850#M1204354</guid>
      <dc:creator>phgdet</dc:creator>
      <dc:date>2025-05-23T05:02:28Z</dc:date>
    </item>
    <item>
      <title>Re: Hide New Button the workspace and related list</title>
      <link>https://www.servicenow.com/community/developer-forum/hide-new-button-the-workspace-and-related-list/m-p/3271856#M1204356</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/297279"&gt;@phgdet&lt;/a&gt;&amp;nbsp;, Thanks for the response, I have tired it but no luck when I tried created in global application my custom tables are visible and when switch to my custom application it's not allowing me to make changes as it's out of application scope&lt;/P&gt;</description>
      <pubDate>Fri, 23 May 2025 05:15:12 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/hide-new-button-the-workspace-and-related-list/m-p/3271856#M1204356</guid>
      <dc:creator>Community Alums</dc:creator>
      <dc:date>2025-05-23T05:15:12Z</dc:date>
    </item>
    <item>
      <title>Re: Hide New Button the workspace and related list</title>
      <link>https://www.servicenow.com/community/developer-forum/hide-new-button-the-workspace-and-related-list/m-p/3271887#M1204366</link>
      <description>&lt;P&gt;@Community Alums&amp;nbsp;&lt;/P&gt;
&lt;P&gt;if you ensure correct table level CREATE ACLs are configured the buttons will be hidden for the users who don't satisfy the ACL.&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>Fri, 23 May 2025 05:59:59 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/hide-new-button-the-workspace-and-related-list/m-p/3271887#M1204366</guid>
      <dc:creator>Ankur Bawiskar</dc:creator>
      <dc:date>2025-05-23T05:59:59Z</dc:date>
    </item>
    <item>
      <title>Re: Hide New Button the workspace and related list</title>
      <link>https://www.servicenow.com/community/developer-forum/hide-new-button-the-workspace-and-related-list/m-p/3272044#M1204412</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Community Alums,&amp;nbsp;&lt;BR /&gt;If it is the only record you need to create in the correct scope, I recommend you create that&amp;nbsp;&lt;SPAN&gt;Action Exclusion record in global scope, then change its scope to your custom scope through XML.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Here are steps:&lt;BR /&gt;1. Export that record to .xml file&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;2. Show .xml file of a random record in your correct scope and copy these lines.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="phgdet_0-1747987758844.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/444417i0BE5EEEA5309C947/image-size/medium?v=v2&amp;amp;px=400" role="button" title="phgdet_0-1747987758844.png" alt="phgdet_0-1747987758844.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;3. Replace the global scope line in the downloaded .xml file with lines above.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;4. Import the .xml file again to the list of Action Exclusion.&lt;BR /&gt;Now you got that file created in the correct scope.&lt;BR /&gt;Check the reference &lt;A href="https://www.servicenow.com/community/developer-articles/move-application-files-between-to-from-scoped-applications/ta-p/2488973" target="_self"&gt;here&lt;/A&gt;.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I hope you can achieve it.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 23 May 2025 08:14:03 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/hide-new-button-the-workspace-and-related-list/m-p/3272044#M1204412</guid>
      <dc:creator>phgdet</dc:creator>
      <dc:date>2025-05-23T08:14:03Z</dc:date>
    </item>
  </channel>
</rss>

