How to delete replication subscription from the producer replication set (IDR)?SummaryTSM Modules we are facing issues and it is not working properly. We have taken two instance one as provider & the other one as customer. Details of both instances are mentioned below: Provider Instance: https://infosyspov.service-now.com/navpage.do Customer Instance: https://infypov.service-now.com/navpage.do Now when we onboard a new ebonding for Telecommunications customer then at that time we need to integrate both provider & customer instances. But after we approve the request from provider instance & then we reload form at the consumer instance the Inbound Status and Outbound Status doesn't change to Active Replication ( Refer to the Product Docs link : https://docs.servicenow.com/bundle/paris-telecom-service-management/page/product/ebonding-telecommunications/task/create-new-ebond-customer.html ). The status still shows Activation Requested after trying multiple times. NOTE: TSM ebonding catagory is not available for selection in the field below hence selected CSM Please reach out to Anish Anand for this Ph : +91 8904645834 Or Tanay Bansal : +91 8527329551ReleaseAll versions.InstructionsIf you have created a replication subscription record manually in the producer replication sets and you wish to delete the entry. We should never create replication subscription record manually. From the user interface, if you select the record there is no "delete" record option available. So, you need to run below script from System Definition > Backrgound script: var gr = new GlideRecord("idr_subscription");gr.get("7f452898dxxxxxx071a24cae1396197a"); // sys_id of your recordgr.deleteRecord(); You can get the sys_id of the record which you want to delete by opening the record from the instance producer replication sets.