Synchronizing an asset class with a configuration item class and Install base class
Summarize
Summary of Synchronizing an Asset Class with a Configuration Item Class and Install Base Class
This process allows ServiceNow customers to synchronize asset classes, configuration item (CI) classes, and Install base classes by mapping model categories within the Customer Service Management (CSM) application. This synchronization enables data flow between entities by ensuring that the same information is replicated across both the Install base item and asset forms.
Show less
Key Features
- Bidirectional Synchronization: By updating fields such as Location, Install date, Consumer, Account, State, and Contact on the Install base item form, changes will reflect on the asset form. However, updates to the asset form will not synchronize back to the Install base item unless the Consumer and Account fields are updated from the Install base item.
- Install Base Item Class: The Install base item class shows only tables extending from the Install base table. If no extensions exist, the options will not appear in the Install base class list.
- Product Instance Identifier: This identifier prevents duplicate records by tracking Install base items and their assets. It applies across all extensions of the Install base table and is a read-only hash value.
- Product Instance Hierarchy: Establishing this hierarchy ensures that changes in the asset hierarchy automatically update the Install base hierarchy, maintaining consistency between parent and child Install base items.
Key Outcomes
By effectively synchronizing these classes, ServiceNow customers can expect improved data integrity across their asset management processes, streamlined updates, and enhanced visibility into the relationships between assets and their corresponding Install base items. This synchronization facilitates better management of customer service operations and supports accurate reporting and decision-making.
You can synchronize the asset class, configuration item (CI) class, and the Install base class by mapping the model categories in the Customer Service Management (CSM) application. With this synchronization, the data can flow between the different entities because the same information is replicated on both entities.
Overview
Install base item class
The Install base item class on the model category form only displays the tables that extend from the Install base table [sn_install_base_item]. If the Install base table has no extensions, no options are displayed in the Install base Class list. You can create a synchronization between an Install base record and an existing associated record by using the following sample migration script.
var ibClasses = []; //If the list is empty, system will fetch model categories for all Install base item classes
var assetIBIntegrationUtil = new sn_install_base.AssetIBIntegrationUtils();
assetIBIntegrationUtil.syncExistingInstallBaseRecordsToAsset(ibClasses)
Product instance identifier
Product instance hierarchy for Install Base Management
Adopt the product instance hierarchy into Install Base Management to maintain a synchronization between an asset and an Install base item in the Customer Service Management application.