Not able to configure related list as the 'Default view' is in the Application Insights application and cannot be editedDescriptionAfter installing Application Insights, some of the related lists with the Default View are not configurable.Steps to Reproduce 1. Install Application Insights2. Open any records in [sys_script_client] or [sys_script_include]3. Configure the related listExpected behaviorThe related list for the Default View is configurableActual behaviorNot able to configure the related list WorkaroundIdentify the [sys_ui_related_list] records their Sys IDs for the affected tables. For example, the following are the related list records for Client Script and Script Include that are known to be impacted:- Client Script [sys_ui_related_list.do?sys_id=4c951da9530030102e10ddeeff7b12e6]Script Include sys_ui_related_list.do?sys_id=d4500d21538030102e10ddeeff7b12e2 Run the following background script to change the scope of the related list to "Global"Once the scope of the related list records is updated to "Global", you can configure the related list from the UI var gr = new GlideRecord('sys_ui_related_list'); gr.get('4c951da9530030102e10ddeeff7b12e6'); // replace the sys_id with the affected record gr.setValue('sys_scope','global'); gr.update(); Related Problem: PRB1917466