CSA Exam Domains — CSA Core
The major content areas covered by the ServiceNow Certified System Administrator exam: Instance & Data Architecture, User Interface & Navigation, Collaboration, Self-Service & Automation, Database & Application Configuration, Security & Access Control, Reporting & Performance Analytics, and Platform Overview.
Why it matters for CSA: Understanding the exam blueprint helps prioritize study and ensures coverage of all assessed competencies.
Example: Map your study plan to each domain and track progress against the blueprint.
Exam Trap ⚠️: Know where it is configured and which records it affects—don’t confuse similarly named features.
Instance — Platform
A single, isolated ServiceNow environment (e.g., dev, test, prod) with its own database and configurations.
Why it matters for CSA: CSA candidates must understand instance separation, cloning, upgrades, and typical environment strategies.
Example: Use a dev instance for configuration, then promote changes via update sets to test and prod.
Exam Trap ⚠️: Know where it is configured and which records it affects—don’t confuse similarly named features.
Release Family — Platform
ServiceNow versions are organized into named release families (e.g., Vancouver, Washington DC) with features and fixes.
Why it matters for CSA: CSA requires awareness of upgrade cadence, release notes, and compatibility considerations.
Example: Plan upgrade testing based on release notes and the Store app compatibility list.
Exam Trap ⚠️: Know where it is configured and which records it affects—don’t confuse similarly named features.
Application Scope — Platform
Defines the namespace and boundaries for an app, controlling which artifacts are accessible and which scripts can call others.
Why it matters for CSA: Scope affects update set behavior, script include access, and security—key CSA knowledge.
Example: Create a scoped app to encapsulate custom tables and script includes, limiting cross‑app access.
Exam Trap ⚠️: Cross-scope access is restricted—APIs differ; ensure you are in the correct scope and update set.
Table — Platform
A database object that stores records (rows) with fields (columns). Tables can extend other tables and inherit fields.
Why it matters for CSA: Core to data modeling and configuration tasks on the exam.
Example: The Task [task] table is extended by Incident [incident], Problem [problem], and Change [change_request].
Exam Trap ⚠️: Know where it is configured and which records it affects—don’t confuse similarly named features.
Field — Platform
A column within a table that stores a specific type of data (string, integer, reference, choice, etc.).
Why it matters for CSA: Field configuration and dictionary elements are common CSA topics.
Example: Add a Choice field to Incident for business impact with values Low/Medium/High.
Exam Trap ⚠️: Know where it is configured and which records it affects—don’t confuse similarly named features.
Record — Platform
A single row in a table representing one data entity.
Why it matters for CSA: Navigating, editing, and managing records are foundational CSA skills.
Example: Open an Incident record and update state and assignment group via the form.
Exam Trap ⚠️: Know where it is configured and which records it affects—don’t confuse similarly named features.
Dictionary — Platform
Metadata definitions for tables and fields, including types, attributes, and behaviors.
Why it matters for CSA: CSA covers dictionary entries/overrides, field attributes, and configuration best practices.
Example: Add a Dictionary Override on Incident to make a field mandatory only on that table.
Exam Trap ⚠️: Know where it is configured and which records it affects—don’t confuse similarly named features.
Dictionary Override — Platform
An override that changes field behavior on a child table when the field is inherited from a parent table.
Why it matters for CSA: Important when dealing with extended tables such as Task.
Example: Make Short description mandatory on Incident but not on Change via a dictionary override.
Exam Trap ⚠️: Know where it is configured and which records it affects—don’t confuse similarly named features.
Extended Table — Platform
A table that inherits fields and behavior from a parent table, allowing specialization.
Why it matters for CSA: CSA expects knowledge of extension, inheritance, and the Task hierarchy.
Example: Problem [problem] extends Task [task] and adds root cause specific fields.
Exam Trap ⚠️: Know where it is configured and which records it affects—don’t confuse similarly named features.
Reference Field — Platform
A field that points to a record in another table, creating a relationship.
Why it matters for CSA: Used heavily across the platform; knowing reference qualifiers is exam‑relevant.
Example: Caller on Incident references the User [sys_user] table.
Exam Trap ⚠️: Know where it is configured and which records it affects—don’t confuse similarly named features.
Choice Field — Platform
A field with predefined selectable values controlled by the Choice table.
Why it matters for CSA: Choice maintenance and translation are common tasks.
Example: Add a new Priority choice and map to an SLA policy.
Exam Trap ⚠️: Know where it is configured and which records it affects—don’t confuse similarly named features.
Schema Map — Platform
A visual representation of table relationships including extensions and references.
Why it matters for CSA: CSA candidates should know how to explore table relationships.
Example: Open the Schema Map for Task to see child tables like Incident, Problem, Change.
Exam Trap ⚠️: Know where it is configured and which records it affects—don’t confuse similarly named features.
Form — UI/UX
The UI used to view or edit a single record, with sections, related lists, and form layout.
Why it matters for CSA: Forms are core to day‑to‑day work and configuration.
Example: Personalize form layout to show Additional comments and Assignment group prominently.
Exam Trap ⚠️: Personalize affects only you; Configure changes system-wide—avoid unintended global changes.
List — UI/UX
A tabular view of multiple records with filtering, sorting, and list controls.
Why it matters for CSA: List navigation, filters, and bulk edits are CSA basics.
Example: Use list filters to find P1 incidents assigned to your group and update via list edit.
Exam Trap ⚠️: Personalize affects only you; Configure changes system-wide—avoid unintended global changes.
Filter — UI/UX
Criteria that constrain the records displayed in a list or report.
Why it matters for CSA: CSA tests using conditions, breadcrumbs, and saving filters.
Example: Create a filter: Priority is 1 ‑ Critical AND Assignment group is Service Desk.
Exam Trap ⚠️: Personalize affects only you; Configure changes system-wide—avoid unintended global changes.
Breadcrumbs — UI/UX
Clickable parts of a filter that let users quickly remove or alter conditions.
Why it matters for CSA: Useful for efficient navigation—often covered in UI basics.
Example: Click a breadcrumb to remove the Assignment group condition and widen results.
Exam Trap ⚠️: Personalize affects only you; Configure changes system-wide—avoid unintended global changes.
Module — UI/UX
A navigational link in the Application Navigator that opens a list, form, or page.
Why it matters for CSA: Understanding modules vs. applications is foundational.
Example: Create a module for Open Incidents filtered by your assignment group.
Exam Trap ⚠️: Personalize affects only you; Configure changes system-wide—avoid unintended global changes.
Application (Navigator) — UI/UX
A grouping of modules in the Application Navigator representing a functional area.
Why it matters for CSA: Knowing how to organize and control visibility is important.
Example: Add the Incident application to favorites for quick access.
Exam Trap ⚠️: Personalize affects only you; Configure changes system-wide—avoid unintended global changes.
Update Set — Platform
A container that captures configuration changes for moving between instances.
Why it matters for CSA: Critical for promoting changes across dev/test/prod—high CSA relevance.
Example: Record changes in an update set, complete it, export XML, and import to test/prod.
Exam Trap ⚠️: Update Sets capture configuration, not data—preview for collisions before commit; never move records like Incidents.
Update Source — Platform
Defines an origin instance for retrieving update sets into a target instance.
Why it matters for CSA: Understanding retrieval and preview/commit is part of CSA.
Example: Set up an Update Source to pull update sets from dev into test.
Exam Trap ⚠️: Know where it is configured and which records it affects—don’t confuse similarly named features.
Preview/Commit — Platform
Steps to validate (preview) and apply (commit) update set changes on a target instance.
Why it matters for CSA: Knowledge of collisions and resolution is tested.
Example: Preview shows collisions; resolve then commit to apply changes safely.
Exam Trap ⚠️: Know where it is configured and which records it affects—don’t confuse similarly named features.
Collision — Platform
A conflict during update set preview when a target has changes that differ from incoming updates.
Why it matters for CSA: CSA covers identifying and resolving collisions.
Example: Use the Compare UI to merge or back out overlapping dictionary updates.
Exam Trap ⚠️: Know where it is configured and which records it affects—don’t confuse similarly named features.
ACL — Security/Access
Access Control List rule that grants or denies access to table/field/record operations based on roles, conditions, and scripts.
Why it matters for CSA: Security fundamentals are central to CSA.
Example: Create a table‑level read ACL for Incident that requires the itil role and department match.
Exam Trap ⚠️: Do not forget field ACLs—they can block access even if table ACL allows it.