How to Remove the "New" Button from Related List.Issue How to Remove the "New" Button from Related List.ReleaseAll ReleaseCauseThe "New" Button is part of a Global Declarative Action. Disabling the Button will also disable it on all other related/Table Lists. To disable it for a specific table, the action exclusion feature can be used. ResolutionFirst, find out the Declarative action used in the related list by inspecting the element from DOM and selecting the Gsfid Go to sys_declarative_action_assignment table and search with filter sysid is " copied sysid from DOM"Go to the Global Declarative Action:`https://Instance-name.service-now.com/sys_declarative_action_assignment.do?sys_id=f281016553213300ffa9ddeeff7b122a&sysparm_view=advanced&sysparm_domain=null&sysparm_domain_scope=null`You can try using the action exclusion feature to exclude a particular table In rare Scenarios, the above feature does not work. You can try the below steps to resolve the issue Change the view to Advance view and add the script condition `parent.sys_class_name + "" !== "Table name"` in the Scripted Condition field.Save the changes.The "New" button should now be hidden from the related list section in the table defined above.**Note:** As the solution involves changing an OOB file, it is recommended to check the field "Replace on Upgrade" in the `sys_update_xml` table to ensure the customization is not overwritten during an upgrade. After the upgrade, the customization part can be added back.