How to remove the available export options for lists in Service PortalDescription<!-- div.margin{ padding: 10px 40px 40px 30px; } table.tocTable{ border: 1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); padding-top: .6em; padding-bottom: .6em; padding-left: .9em; padding-right: .6em; } table.noteTable{ border:1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); width: 100%; border-spacing:2; } table.internaltable { white-space:nowrap; text-align:left; border-width: 1px; border-collapse: collapse; font-size:14px; width: 85%; } table.internaltable th { border-width: 1px; padding: 5px; border-style: solid; border-color: rgb(245, 245, 245); background-color: rgb(245, 245, 245); } table.internaltable td { border-width: 1px; padding: 5px; border-style: solid; border-color: #E0E0E0; color: #000000; } .title { color: #D1232B; font-weight:normal; font-size:28px; } h1{ color: #D1232B; font-weight:normal; font-size:21px; margin-bottom:-5px } h2{ color: #646464; font-weight:bold; font-size:18px; } h3{ color: #000000; font-weight:BOLD; font-size:16px; text-decoration:underline; } h4{ color: #646464; font-weight:BOLD; font-size:15px; text-decoration:; } h5{ color: #000000; font-weight:BOLD; font-size:13px; text-decoration:; } h6{ color: #000000; font-weight:BOLD; font-size:14px; text-decoration:; } ul{ list-style: disc outside none; margin-left: 0; } li { padding-left: 1em; } --> In any Service Portal list view, currently 'Export as PDF', 'Export as Excel', and 'Export as CSV' are available options to export the records. Example URL for incident list page: https://<instance-name>.service-now.com/sp?id=list&table=incident This article explains how to remove any of these options. Procedure The code for this is in 'Data Table' widget(ID:widget-data-table) widget. The server script of widget has below line of code: $scope.exportTypes = [{label:'PDF', value: 'PDF'}, {label:'Excel', value:'EXCEL'}, {label:'CSV', value:'CSV'}]; This widget is included as embedded widget in 'Data Table From URL Definition' (ID:data-table-from-url) in Line 47 of server script. data.dataTableWidget = $sp.getWidget('widget-data-table', data); Please follow the below steps to update the options: 1. Clone 'Data Table' widget and name it as 'Clone of Data Table' (ID:clone-widget-data-table) and remove export types that are not needed and save the record. For example if we change from $scope.exportTypes = [{label:'PDF', value: 'PDF'}, {label:'Excel', value:'EXCEL'}, {label:'CSV', value:'CSV'}]; to $scope.exportTypes = [{label:'Excel', value:'EXCEL'}, {label:'CSV', value:'CSV'}]; 'Export as PDF' option will be removed. 2. Clone 'Data Table From URL Definition' (ID:data-table-from-url) and name it as 'Clone of Data Table From URL Definition' (ID:clone-data-table-from-url) and in Server Script change data.dataTableWidget = $sp.getWidget('widget-data-table', data); to data.dataTableWidget = $sp.getWidget('clone-widget-data-table', data); 3. Update 'list' page to use 'Clone of Data Table From URL Definition' in the widget instance. Note : Any widget name and ID can be used for the cloned widgets. Make sure to use the ID correctly, while including the embedded widget Release or EnvironmentAny supported version