Virtualized relationships not being updated on the server record when VM-instance is moved to different ESX serverIssue <!-- 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; } --> Symptoms Virtualized relationship between the server and Hypervisor(ESX) not being updated when the VMware instance moves from one ESX to other. Release All releases Cause -"Virtual Computer check" is the business rule that is responsible for creating these virtualized relationships between the server and the ESX host. This business rule will run only when the record is inserted or when the serial number changes. When the VM instance moves from one instance to the other, none of these conditions will be satisfied and the business rule logic to correct the Server to VM instance relationship will not be triggered. -Registered on relationship will be updated when discovery is re-run on the Vcenter and this will update the relationship between vm-instance and ESX. But the virtualized relationship is not touched here as the business rule will be run on the cmdb_ci_computer record when discovered via Ip address. // only process rec if just inserted or serial_number changed AND serial_number is non-nil if (!(current.serial_number.changes() && JSUtil.notNil(current.serial_number))) Resolution -Navigate to business rule "Virtual Computer Check", modify the condition from if (!(current.serial_number.changes() && JSUtil.notNil(current.serial_number))) to if (!(JSUtil.notNil(current.serial_number))) -Re-run the discovery on the Ip address and this will correct the relationship between the Server and Hypervisor(ESX)