SNOW-CSA Reporting, SLA and Imports Practice Question
A company needs to import data from a CSV file into the User table. The CSV includes fields for first name, last name, email, and department. However, the import fails because some email addresses are invalid. Which feature in ServiceNow can be used to prevent invalid emails from being imported?
⚠ Common exam trap
Candidates often confuse Data Source configuration (which handles parsing) with Transform Map condition scripts (which handle row-level validation), leading them to select Option A because they think validation is part of the data source setup.
Answer choices
Why each option matters
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
Transform Map with condition scripts
A Transform Map with condition scripts allows you to validate incoming data before it is written to the target table. In this scenario, you can add a script to the transform map that checks each email address against a regular expression pattern (e.g., RFC 5322) and skips or rejects rows with invalid emails, preventing them from being imported into the User table.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✗
Data Source configuration
Why it's wrong here
A Data Source defines the source file and field mapping, not validation rules.
- ✗
Import Set Row
Why it's wrong here
Import Set Row is a staging record; validation occurs during transform.
- ✓
Transform Map with condition scripts
Why this is correct
Transform Maps can include condition scripts to skip or error on invalid data, such as invalid email addresses.
- ✗
Import Set Table API
Why it's wrong here
The Import Set Table API is used to insert records programmatically, not for validation.
Go deeper
Related to this question
About these practice questions
This SNOW-CSA question is part of Courseiva's 504-question bank — original exam-style content with full explanations and wrong-answer analysis, never real exam questions or exam dumps. Learn why practice questions differ from exam dumps →
JA
Written by Johnson Ajibi, MSc IT Security
Senior Network & Security Engineer · founder of Courseiva
This SNOW-CSA practice question is part of Courseiva's free ServiceNow certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the SNOW-CSA exam.