SCCM data import process and source tables

  • Release version: Zurich
  • Updated July 31, 2025
  • 4 minutes to read
  • Summarize
    Summarized using AI
    This content was generated using new OpenAI-powered functionality. Results are provided on an as is basis and are not guaranteed to be accurate or complete.

    Summary of SCCM data import process and source tables

    The ServiceNow platform supports Microsoft SCCM versions with consistent features and imported data. The SCCM data import process involves scheduled imports managed by a MID Server, which retrieves SCCM data and loads it into staging tables within the ServiceNow instance. Transform maps then process this data, mapping it into the Configuration Management Database (CMDB).

    Show full answer Show less

    Data Import Process and Source Tables

    Imports are controlled by schedules named SCCM System <version> Import, which can run immediately or at set intervals. The import process uses specific SCCM source tables, each linked to corresponding staging tables and target CMDB tables. For example:

    • Computer system data maps to the cmdbcicomputer table via the staging table impsccm<version>computerid.
    • Disk, network adapter, operating system, processor, and software data each have designated staging and CMDB target tables.
    • When Software Asset Management (SAM) is enabled, software imports also populate the cmdbsamswinstall table.

    SCCM Data Sources and Transform Maps

    The integration uses JDBC data sources configured with SCCM database connection details and MID Server assignments. Each data source includes related transform maps that define how SCCM fields map to CMDB fields. Two primary transform maps support incremental software imports:

    • Incremental Import: Active by default for instances without SAM enabled.
    • Incremental Import (SAM enabled): To be activated when the SAM plugin is enabled.

    A full software data import can be forced by clearing the last run datetime on the data source, though incremental imports are more efficient after the initial full import.

    Assigned User Mapping

    The import process attempts to populate the Assigned to field in CMDB computer records by matching user names from SCCM data against the ServiceNow sysuser table, based on a configurable system property (default is username).

    CI Identification and Reconciliation

    ServiceNow uses resource IDs from SCCM as identifiers to match or create Configuration Items (CIs) in the CMDB. The Identification and Reconciliation Engine (IRE) updates existing CIs or creates new ones based on these IDs stored in the sysobjectsource table. Customers upgrading from pre-Geneva versions should enable the glide.discovery.usecmdbidentifiers system property to use the new identifier framework and convert any custom legacy identifiers accordingly.

    Data Population and Software Management

    Scripts populate associated CMDB data for target CIs discovered via hardware rules. The integration maintains software package counts and removes software instances from the CMDB when uninstalled on the CI. Full software imports update standard software and software instance tables, and the software installation table if SAM is enabled.

    Important: SCCM data imports must include complete CI data, as the CMDB import assumes the data represents all existing relationships. Partial data can result in unintended deletion of active relationships.

    The Microsoft SCCM versions supported in the ServiceNow® platform offer identical features and the same imported data.

    Data import process

    1. A schedule called SCCM System <version> Import determines when the SCCM tables are imported into the ServiceNow® instance. Imports can be executed immediately or scheduled to run at defined intervals.
    2. A MID Server retrieves the SCCM data and imports it into staging tables on the instance.
    3. Transforms run on the data in the staging tables and map the SCCM data to existing fields in the CMDB.
    SCCM data import process

    SCCM data imported

    This table shows the SCCM source tables, the corresponding import set staging tables in the ServiceNow® instance, and the target tables in the CMDB.
    SCCM table Staging table CMDB table
    • v_GS_Computer_System
    • v_GS_Workstation_Status
    • v_GS_System
    • v_GS_PC_Bios
    • v_GS_Operating_System
    • v_GS_Computer_System_Product
    • v_GS_System_Enclosure
    • v_GS_Baseboard
    SCCM <version> Computer Identity [imp_sccm<version>_computer_id] Computer [cmdb_ci_computer]
    v_GS_Disk SCCM <version> Disk [imp_sccm<version>_disk] Disk [cmdb_ci_disk]
    v_GS_Network_Adapter_Configuration SCCM <version> Network [imp_sccm<version>_network] Network Adapter [cmdb_ci_network_adapter]
    v_GS_Operating_System SCCM <version> Operating System [imp_sccm<version>_os] Computer [cmdb_ci_computer]
    v_GS_Processor SCCM <version> Processor [imp_sccm<version>_processor] Computer [cmdb_ci_computer]
    • v_GS_Add_Remove_Programs
    • v_GS_Add_Remove_Programs_64
    SCCM <version> Software [imp_sccm<version>_software]
    • Software [cmdb_ci_spkg]
    • Software Installation [cmdb_sam_sw_install] (when Software Asset Management is enabled*)
    *For more information about Software Asset Management and how to enable it, see Request Software Asset Management.

    SCCM data sources

    The ServiceNow® SCCM integration uses JDBC data sources to import software data from the SCCM database. Each data source contains the connection specifics for the SCCM database and names the MID Server the instance will use to import the data. The transforms that map the SCCM fields to the CMDB are defined in a related list in each data source record.

    Transform maps

    Transform maps are accessed from the Transforms related list in each data source record. The source fields in SCCM and the target fields in the CMDB are listed in the Field Maps related list in each Table Transform Map record. The SCCM integration uses the transform map utility provided with the ServiceNow® platform. For instructions on editing or creating a transform map, see Transform maps.

    The SCCM integration provides two transform maps for incremental software imports. Only one transform map can be enabled (Active) at a time.
    • Incremental Import: Enabled by default. This map should be configured as Active when ServiceNow® Software Asset Management is not enabled on the instance.
    • Incremental Import (SAM enabled): If the Software Asset Management plugin is activated, set this transform to Active
    Note:
    To force a one-time full import of all software data from the SCCM database, clear the value in theLast run datetime field on the data source. This operation can take a long time to execute, so the most efficient method is to use an incremental transform after the first full import.

    Transforming the assigned user

    The SCCM <version> Computer Identity transform script attempts to set the Assigned to field in the CMDB record by looking up the name of the user in the SCCM source table and comparing the value with the matching field in the ServiceNow sys_user table. If a match is found, that user is assigned to the record. If no match is found, the Assigned to field is left blank. The matching field is controlled by the glide.discovery.assigned_user_match_field system property, which is set to user_name by default.

    Identifiers

    The SCCM integration uses CI identification to update CIs created from data imported from SCCM with a resource ID. The Hardware Rule identifier returns the resource ID of a computer from SCCM and stores it in the Source [sys_object_source] table. When resource IDs are first imported, either from SCCM or Discovery, the [sys_object_source] table is populated with IDs for each CI it identifies. In subsequent imports, if an incoming ID matches that of an existing CI, IRE (Identification and Reconciliation Engine) updates the information for that CI in the CMDB. If the incoming resource ID does not match that of an existing CI, IRE creates a new CI and populates it with the resource ID.

    For more information about CMDB Identification and Reconciliation and IRE, see CMDB Identification and Reconciliation.

    Upgrades from pre-Geneva versions still preserve the legacy identifiers, but you can switch to the new identifiers using a property: glide.discovery.use_cmdb_identifiers. If you upgraded from a pre-Geneva version, you must manually add this property and set it to true to use the new identifiers. If you upgraded from Geneva, this property is available in the System Properties [sys_properties] table. To preserve functionality in custom legacy identifiers, convert them to the new CMDB identifier rules format before enabling this property. The system does not reconfigure your custom identifiers to the new framework automatically.

    Scripts

    Data population scripts populate the related data in the CMDB for each target CI discovered by the Hardware Rule identifier.

    Software

    The Microsoft SCCM integration reconciles the software package count in the records for a CI and removes a software instance from the Software Instance [cmdb_software_instance] table if the software package is uninstalled from the CI. For a full software import, the transform populates the Software [cmdb_ci_spkg] and Software Instance [cmdb_software_instance] tables. If the Software Asset Management plugin is enabled, the transform populates the Software Installation [cmdb_sam_sw_install] table.
    Note:
    The table data imported from SCCM must contain complete data for the CI. The instance assumes that the import represents all relationships that exist and adjusts the CMDB accordingly. Partial data received from SCCM tables can cause the deletion of active relationships.