CI records are updated with Asset reference field, when a record is updated/inserted in cmdb_model table.Issue <!-- 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; } table tr td { padding: 15px; } .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:; } hr{ border-top-width: 1px; border-top-style: solid; border-top-color: #cccccc; } ul { list-style: disc outside none; margin-left: 0; } li { padding-left: 1em; } --> Overview When you see that a CI record which was missing the "Asset" reference field, is now populated by the related asset reference when a model category is added/changed in a cmdb_model record corresponding to that CI. This is due to a business rule "Sync model category" Subject The "Sync model category" business rule, creates the assets for CI's belonging to the particular model, if they are missing in the first place. So this business rule triggers only when "cmdb_model_category" field on the cmdb_model record changes. If a model category is added or removed from the list, then the business rule is triggered, and it calls createMultipleAssets function from AssetandCI script include. Here, it checks all the CI's that belong to the class associated with the cmdb_model_category that was added. Say for example, "hardware" model category was added to a cmdb_model record, then the script checks all the CI's with that model, in cmdb_ci_hardware table to see if the CI's have an asset record associated with them. If an asset record is not associated, then it creates an asset record in alm_harware table and references it to the "asset" field on the CI. So this business rule does not always get triggered when cmdb_model records are updated, but only when there is change to the model categories or when they are created. Also if the CI record already has an a proper asset record linked to it, then it would not update the CI record