How to clear the 'computer_system_offset' in the ILMT server connections ?Description<!-- 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; } --> Description Once the connection is setup for ILMT - Integrations, how do we reset connection attribute 'computer_system_offset' to 0. More details in the below docs: https://docs.servicenow.com/bundle/paris-it-asset-management/page/product/software-asset-management2/task/set-up-ibm-platform.html Procedure As of Kingston, the ability to edit the 'computer_system_offset' attribute on the connection record for ILMT - Integration is not available through the UI. Please use the steps below to reset the 'computer_system_offset' attribute: 1. On the instance, navigate to the sys_variable_value table 2. In 'variable' column search for computer_system_offset 3. Identify the record with value other than 0 and copy the sysID of the record. Place it in line 2 of the below scrip. This script is to be run from System Definition > Scripts-Backgroundvar gr = new GlideRecord('sys_variable_value'); gr.get("c947ac6473102300c963534a7af6a729");//where the sys_id is the sys_id of the record in table "sys_variable_value" where the value is other than0 gs.info(gr.value); gr.setValue('value', 0); gr.update();