ServiceNow Certified System Administrator CSA Exam Questions

Page: 1 / 14
Total 517 questions
Question 1

When looking at a long list of records, you want to quickly filler, to show only those which have Shon Description containing email

How might you do that?



Answer : B

In ServiceNow, wildcards are used to filter lists effectively. To search for records where Short Description contains 'email', use the asterisk (*) wildcard.

Steps to Filter a List for 'email' in Short Description:

Click the List Magnifier () to enable column search.

In the 'Short Description' column search box, type:

CopyEdit

*email

Press Enter to apply the filter.

Why Wildcards Matter?

*email Finds any record where 'email' appears anywhere in the Short Description.

email* Finds records where 'email' is at the beginning of the Short Description.

*email* Also works but is redundant, as *email already searches within the text.

Why Other Options Are Incorrect?

A . Click List Magnifier, on Short Description, type ''email'', click enter Incorrect

Typing just 'email' only searches for an exact match, not occurrences within the text.

C . Click List Magnifier, on Short Description, type email, click enter Incorrect

Same issue as (A) -- it does not use a wildcard, so it only returns exact matches.

D . On Search box, select text, type email, click enter Incorrect

The global search bar is not column-specific, meaning it searches across multiple tables, not just Short Description.

Official ServiceNow Documentation Reference:

Using List Filters and Wildcards

ServiceNow Search Wildcards


Question 2

What are examples of Ul Actions, relating to Lists?

Choose 4 answers



Answer : A, B, C, D

UI Actions related to Lists in ServiceNow provide ways to interact with and modify list data through different UI elements.

Correct Answers & Their Functions:

A . List Links

Appear at the bottom of lists and provide actions such as 'Create New' or 'Save as Template.'

B . List Control

Located in the list title bar, allowing users to configure views, export data, and refresh lists.

C . List Buttons

Buttons added to a list form that trigger specific actions, such as 'Approve' or 'Reject.'

D . List Context Menu

Right-click menu on list records providing actions like Edit, Delete, Assign, and Export.

Why Are Other Options Incorrect?

E . List Override

No such feature called 'List Override' exists in ServiceNow.

F . List Choices

This term is not a recognized UI Action for lists in ServiceNow.


ServiceNow CSA Documentation -- UI Actions in Lists

ServiceNow Official Documentation -- List Controls and Actions (https://docs.servicenow.com)

Final Answer: A, B, C, D (List Links, List Control, List Buttons, List Context Menu)

Question 3

A user wants to create a set of filter conditions, where they want to show records which satisfy two conditions:

Incidents where the state is Closed

Incidents where Assignment Group is Network

After clicking the Funnel icon, what should the user do?



Answer : C

In ServiceNow, when applying filters, the Funnel icon opens the condition builder, allowing users to set criteria for displaying records.

Understanding the requirement:

The user wants to see Incidents where the state is Closed OR Incidents where the Assignment Group is Network.

The key word here is OR, meaning records satisfying either condition should be displayed.

Steps to apply this filter in ServiceNow:

Click the Funnel icon to open the condition builder.

Define the first condition Select State = Closed.

Click the OR button (since we want records meeting either condition).

Define the second condition Select Assignment Group = Network.

Press Enter to apply the filter.

Why is the Correct Answer 'C'?

Since the user wants either condition to be true, OR is the correct logical operator.

Pressing Enter after defining the second condition executes the filter.

Why Not the Other Options?

A . Define the first condition; click AND button; define second condition; click Run: Incorrect because AND would require both conditions to be true simultaneously, which is not what the user wants.

B . Define the first condition; click AND button; define second condition; press enter: Same issue as option A---AND will narrow the results instead of expanding them.

D . Define the first condition; click > icon on breadcrumb, define second condition; click Run: The breadcrumb navigation is used to modify filters after applying them, not to create them initially.

E . Define the first condition; click > icon on breadcrumb, define second condition; press enter: Same issue as option D---breadcrumb navigation is for modifying, not for initial filter creation.

Reference from the Certified System Administrator (CSA) Official Documentation:

Using Filters and Condition Builder in ServiceNow: ServiceNow Docs

ServiceNow Querying and Filtering Best Practices

Using OR ensures both conditions are considered independently, displaying incidents that are either Closed or assigned to Network.


Question 4

When selecting the Target table for an import, which tables can you select?

Choose 3 answers



Answer : A, B, E

When selecting a Target Table for an Import Set, you must choose a table that exists within the ServiceNow system and falls within your scope of permissions. The following types of tables are eligible as target tables:

Tables within the Global Scope (A - Correct Answer)

If the table exists within the global application scope, it is accessible from all applications.

Example: Task [task], User [sys_user], Configuration Item [cmdb_ci]

Tables within the Existing Application Scope (B - Correct Answer)

Tables belonging to the same application scope as the import set can be selected.

Example: If you are working in a scoped application like HR Service Delivery, you can import data into HR-related tables.

Related Tables Using Dot Walk (E - Correct Answer)

You can select related tables using dot-walking to reference data from linked tables.

Example: If importing into Incident [incident], you can reference data from Caller (sys_user) via dot-walking.

Why Other Options Are Incorrect?

C . Tables outside of ServiceNow

ServiceNow cannot directly import data into external databases or non-ServiceNow tables.

Instead, you can export data to an external system after processing.

D . Tables which allow write access to other applications

ServiceNow enforces scope protection, so you cannot write to tables in a different application scope unless explicitly allowed.

You need cross-scope privileges to modify tables in another application.

Official ServiceNow Documentation Reference:

Importing Data into ServiceNow

Understanding Application Scope


Question 5

What component of the ServiceNow infrastructure defines every table and field in the system?



Answer : D

In ServiceNow, the Dictionary is the component that defines every table and field in the system.

What is the Dictionary in ServiceNow?

It stores metadata about every table and field.

It contains details like data type, field properties, default values, and relationships.

It is managed through the sys_dictionary table.

Example:

If you navigate to System Definition > Dictionary, you can view and edit field properties for any table.

The Dictionary defines whether a field is mandatory, read-only, or referenceable.

Why Other Answers Are Incorrect:

A . Data Atlas -- Not a valid ServiceNow concept.

B . Table Class Manager -- Manages table extensions and inheritance, but does not define individual fields.

C . Schema -- Refers to the overall structure of a database, but in ServiceNow, the Dictionary manages table and field definitions.

E . Field Map -- Used for data imports and transformations, not for defining tables and fields system-wide.

Reference from Certified System Administrator (CSA) Official Documentation:

ServiceNow Dictionary Overview

ServiceNow CSA Training Module: 'Understanding Tables and Fields'


Question 6

How would you navigate to the Schema map for a table?



Answer : B

A Schema Map in ServiceNow provides a visual representation of a table's relationships, including its extensions, references, and dependencies. This is useful for administrators and developers to understand how data is structured within an instance.

How to Access the Schema Map for a Table:

Navigate to System Definition > Tables

Select the desired table (e.g., incident, task, cmdb_ci, etc.)

Scroll to the 'Related Links' section at the bottom of the form

Click 'Show Schema Map'

This will open a graphical representation of the table, showing: Tables that extend from the selected table Tables that reference the selected table Fields that establish relationships

Why Other Options Are Incorrect?

A . System Dictionary > Show Schema Map; Select Table

The Schema Map is not accessed via the System Dictionary.

C . System Definition > Show Schema Map; Select Table

There is no direct 'Show Schema Map' menu under System Definition; you must go through Tables first.

D . System Definition > Dictionary: Select Table; Go to Related Links and click Show Schema Map

The Dictionary module does not provide a Schema Map option directly for tables.

Official ServiceNow Documentation Reference:

Schema Maps Overview

Viewing Table Relationships with Schema Map


Question 7

Which interface allows users to search articles, submit requests, and browse communication notices?



Answer : C


Page:    1 / 14   
Total 517 questions