ServiceNow Certified Implementation Specialist - Data Foundations (CMDB and CSDM) CIS-DF Question # 13 Topic 2 Discussion
CIS-DF Exam Topic 2 Question 13 Discussion:
Question #: 13
Topic #: 2
When integrating data into the CMDB usingImport Sets and Transform Maps, which type of script is added to ensure the data is processed through theIdentification and Reconciliation Engine (IRE)?
When usingImport Sets and Transform Mapsto ingest data into the CMDB, it is critical that records are processed through theIdentification and Reconciliation Engine (IRE)to prevent duplicates and enforce source precedence. InServiceNow, this is achieved by invoking the IREafterthe transform logic has completed.
TheonAftertransform script is the correct place to call the IRE API. At this stage, the transformed data has already been mapped and prepared, allowing the IRE to correctly identify whether a CI already exists and reconcile updates according to defined rules.
TheonBeforeandonStartscripts execute too early—before data mapping is complete—making them unsuitable for IRE processing. TheonCompletescript runs after the entire import job finishes and is not intended for per-record CI identification and reconciliation.
Because Import Sets can bypass IRE if not configured correctly, using anonAfter scriptis a critical Data Foundations safeguard when this ingestion method is chosen.
Therefore, the correct answer isC – onAfter.
Contribute your Thoughts:
Chosen Answer:
This is a voting comment (?). You can switch to a simple comment. It is better to Upvote an existing comment if you don't have anything to add.
Submit