Courseiva
Knowledge + Practice
CertificationsVendorsCareer RoadmapsLabs & ToolsStudy GuidesGlossaryPractice Questions
C
Courseiva

Free IT certification practice questions with explained answers for CCNA, CompTIA, AWS, Azure, Google Cloud, and more.

Certification Practice Questions

CCNA practice questionsSecurity+ SY0-701 practice questionsAWS SAA-C03 practice questionsAZ-104 practice questionsAZ-900 practice questionsCLF-C02 practice questionsA+ Core 1 practice questionsGoogle Cloud ACE practice questionsCySA+ CS0-003 practice questionsNetwork+ N10-009 practice questions
View all certifications →

Product

CertificationsCertification PathsExam TopicsPractice TestsExam Dumps vs Practice TestsStudy HubComparisons

Company

AboutContactEditorial PolicyQuestion Writing PolicyTrust Center

Legal

Privacy PolicyTerms of Service

Courseiva is a free IT certification practice platform offering original exam-style practice questions, detailed explanations, topic-based practice, mock exams, readiness tracking, and study analytics for Cisco, CompTIA, Microsoft, AWS, and other technology certifications.

© 2026 Courseiva. Courseiva is operated by JTNetSolutions Ltd. All rights reserved.

Courseiva is an independent certification practice platform and is not affiliated with, endorsed by, or sponsored by Cisco, Microsoft, AWS, CompTIA, Google, ISC2, ISACA, or any other certification vendor. Vendor names and certification marks are used only to identify the exams learners are preparing for.

HomeCertificationsSNOW-CSATopicsReporting, SLA and Imports
Free · No Signup RequiredServiceNow · SNOW-CSA

SNOW-CSA Reporting, SLA and Imports Practice Questions

20+ practice questions focused on Reporting, SLA and Imports — one of the most tested topics on the ServiceNow Certified System Administrator CSA exam. Each question includes a detailed explanation so you learn why the right answer is correct.

Start Reporting, SLA and Imports Practice

Exam Domains

Reporting, SLA and ImportsSelf-Service and AutomationUI, Navigation and FormsDatabase Administration and CMDBService Catalog and WorkflowsApplication Rules, ACL and NotificationsAll domains →

Study Tools

Practice TestMock ExamFlashcardsAll Topics

Sample Reporting, SLA and Imports Questions

Practice all 20+ →
1.

A company needs to import user records from a CSV file into the User [sys_user] table. The file contains a 'department' column that should map to the 'department' field in ServiceNow. However, the department values in the CSV are full names (e.g., 'Human Resources'), but the department field in ServiceNow uses a reference to the Department [cmn_department] table. What is the best practice for handling this import?

A.Use a before business rule on the User table to convert the department name after the record is inserted.
B.Create a transform map that maps the source field to the target field, and use a field mapping script to convert the department name to the correct sys_id.
C.Use the Import Set Row API to programmatically map the values during import.
D.Manually edit the CSV file to replace department names with the corresponding sys_id values.

Explanation: Option B is correct because Import Set Rows are processed through transform maps, which allow field mapping scripts to convert source values (like 'Human Resources') into the corresponding sys_id in the Department [cmn_department] table. This is the standard, supported approach for handling reference field lookups during imports, ensuring data integrity without manual intervention or post-insert processing.

2.

An administrator has configured a report on the Incident table showing the count of incidents by assignment group. The report shows data for the current week, but the numbers seem too low. The administrator suspects that incidents resolved before the current week are not being included. What should the administrator check first?

A.Check the 'Time scale' setting and ensure it is set to 'All' instead of 'Current week'.
B.Check the type of the report (e.g., bar chart vs pie chart) as some types only show aggregated data.
C.Check the condition (prompt) filter of the report to see if there is a time-based filter that limits to the current week.
D.Check the 'Group by' field to ensure it is set to 'Assigned to' instead of 'Assignment group'.

Explanation: Option C is correct because the report's condition filter (often called a 'prompt' or 'filter condition') directly controls which records are included. If a time-based condition like 'Opened > Current week' or 'Resolved > Current week' is applied, it would exclude incidents resolved before the current week, causing the low count. The administrator should first inspect the filter conditions to see if such a restriction exists.

3.

An organization has a Service Level Agreement (SLA) defined on the Incident table with a condition of 'Category is Network' and a duration of 4 hours. The SLA is triggered when the incident state changes from 'New' to 'In Progress'. A network incident is created and assigned to the Network Support group. The incident state is changed to 'In Progress' immediately. After 3 hours, the incident is resolved. However, the SLA shows a breach despite the resolution being within 4 hours. What is the most likely cause?

A.The SLA stop condition is set to 'State is Resolved', but the SLA was paused due to a schedule (e.g., after-hours pause) and the pause time was not counted, causing the actual working time to exceed 4 hours.
B.The SLA is assigned to the Network Support group, but the assignment group was changed during the incident.
C.The SLA duration is defined in business hours, and the incident was created after business hours, so the elapsed time counted only business hours, making the 4-hour window longer in real time.
D.The SLA condition 'Category is Network' was not evaluated correctly because the category field was updated after the SLA was triggered.

Explanation: Option A is correct because the SLA breach occurred despite the incident being resolved within 4 hours of moving to 'In Progress'. The most likely cause is that the SLA stop condition is set to 'State is Resolved', but the SLA was paused due to a schedule (e.g., after-hours pause) and the pause time was not counted, causing the actual working time to exceed 4 hours. In ServiceNow, SLA schedules define when the clock is running; if the incident was resolved during a pause period, the SLA timer would have stopped only when the schedule resumed, and the elapsed working time could exceed the 4-hour duration.

4.

A company frequently imports data from an external HR system into the Employee [hr_employee] table using an import set. The import set runs nightly and maps fields correctly. Recently, the import started failing with the error 'Field 'manager' not found in table 'hr_employee''. The manager field exists in the import set rows but not in the target table. What is the most likely cause?

A.The transform map has a field mapping that references 'manager' as a target field, but the hr_employee table does not have a 'manager' column.
B.The import set row table (sys_import_set_row) does not have a 'manager' column.
C.The source CSV file contains a column named 'manager' that is misspelled.
D.The manager field in the target table is of a different data type (e.g., string vs reference).

Explanation: The error 'Field 'manager' not found in table 'hr_employee'' indicates that the transform map is attempting to map a source field to a target column that does not exist in the hr_employee table. Since the import set rows contain the 'manager' field, the mapping in the transform map must be referencing 'manager' as a target field, but the target table lacks that column. This is the most likely cause because the transform map defines the field-to-field mapping between the import set row and the target table, and if the target field name is incorrect or missing from the table, the import will fail.

5.

An administrator is creating a new report to show the average time to resolve incidents for the last quarter. They want the report to automatically update as new incidents are resolved. Which report type should they use?

A.Bar chart report with a condition for resolved incidents.
B.Pivot table report with a 'Average' aggregation.
C.Scorecard report with a metric for average resolution time.
D.List report with a 'Average' aggregation on the 'Resolved' field.

Explanation: A List report with an 'Average' aggregation on the 'Resolved' field is the correct choice because it automatically recalculates the average as new records are added or updated, ensuring the report reflects the most current data without manual intervention. List reports in ServiceNow support real-time aggregation on specific fields, making them ideal for dynamic metrics like average resolution time.

+15 more Reporting, SLA and Imports questions available

Practice all Reporting, SLA and Imports questions

How to master Reporting, SLA and Imports for SNOW-CSA

1. Baseline your knowledge

Start with 10 questions to gauge your current understanding of Reporting, SLA and Imports. This tells you whether you need a concept refresher or just practice.

2. Review every explanation

For each question — right or wrong — read the full explanation. Understanding why an answer is correct is more valuable than knowing the answer itself.

3. Focus on exam traps

Reporting, SLA and Imports questions on the SNOW-CSA frequently use trap wording. Look for subtle differences in answers that test your precision, not just general knowledge.

4. Reach 80% consistently

Do repeated sessions until you score 80%+ three times in a row. Then move to mixed-mode practice to test cross-topic recall under realistic conditions.

Frequently asked questions

How many SNOW-CSA Reporting, SLA and Imports questions are on the real exam?

The exact number varies per candidate. Reporting, SLA and Imports is tested as part of the ServiceNow Certified System Administrator CSA blueprint. Practicing with targeted Reporting, SLA and Imports questions ensures you can handle any format or difficulty that appears.

Are these SNOW-CSA Reporting, SLA and Imports practice questions free?

Yes. Courseiva provides free SNOW-CSA practice questions across all exam topics and domains. The platform includes topic-based practice, mock exams, missed-question review, bookmarked questions, and readiness tracking — no account required.

Is Reporting, SLA and Imports one of the harder SNOW-CSA topics?

Difficulty is subjective, but Reporting, SLA and Imports is a high-priority exam concept tested in multiple ways — direct recall, scenario analysis, and command-output interpretation. Consistent practice is the best way to build confidence.

Ready to practice?

Launch a full Reporting, SLA and Imports practice session with instant scoring and detailed explanations.

Start Reporting, SLA and Imports Practice →

Topic Info

Topic

Reporting, SLA and Imports

Exam

SNOW-CSA

Questions available

20+