When Application Insights is installed, OOB sys_ui_related_list for sys_script is replacedDescriptionSome sys_ui_related_list records are having their scope changed to "Application Insights" from "Global" after the Application Insights plugin is installed.Steps to Reproduce 1. Install Application Insights2. Navigate to sys_script.do and attempt to modify related lists via `configure -> Related Lists`Expected: Related lists are configurable from the global scopeCurrent: Related lists are not configurable, and if changed, all related lists disappear from sys_scriptWorkaround1- Navigate to sys_ui_related_list2- Identify the record for the table whose related lists you want to modify, for the "Default View" and Application is "Application Insights"3- Copy the sys_id of the above record4- Run the following script in scripts background (sys.scripts.do):var gr = new GlideRecord('sys_ui_related_list');gr.get('<sys_id_of_related_list>');gr.setValue('sys_scope','global');gr.update();Related Problem: PRB1766716