What actions are taken to filter a long list of records to show only those with the Category of Hardware?
Correct Answer: C
When working with along list of records, users canfilter dataquickly using theShow Matchingfeature. C: On the list, locate and right-click on the value Hardware, select Show Matching Right-clickingon the"Hardware"value and selecting"Show Matching"filters the list toonly show records where the Category is Hardware. This is thefastestway to apply aquick filter. A: On Breadcrumb, click the > icon, type Hardware and click enter Breadcrumbsdo not support direct text inputfor filtering. Breadcrumbs showexisting filtersbut are not used to type new values. B: On the Category column header, right-click and select Show > Hardware Incorrect menu option-There is no "Show > Hardware" selection. Instead, users would need to use"Show Matching"(Correct Answer C). D: Right-click on magnifier, type Hardware, and click enter There isno "magnifier" optionfor filtering in list view. E: Click Funnel icon, type Hardware and click enter TheFunnel (Filter) iconis used to createadvanced filters, but it doesnotsupport direct text input like this. The correct way to use theFilterwould be: Click theFunnel icon SetCategory = Hardware ClickRun References:ServiceNow Documentation:Filtering Data in a List ServiceNow UI Guide:Using the Show Matching Feature
CSA Exam Question 142
What is the platform name for the User table?
Correct Answer: D
In ServiceNow, every table has a uniqueplatform name(also known as thedatabase nameorsys_id). The table that stores user records in ServiceNow is called"sys_user". Table Name:sys_user Purpose:Stores user records, including their roles, group memberships, and personal details. Location in ServiceNow:You can access this table by navigating to:All # Users and Groups # Users Key Fields in sys_user Table: User ID (user_name)- Unique identifier for the user. Name (name)- Full name of the user. Email (email)- Email address of the user. Roles (roles)- Defines user permissions in the system. Active (active)- Indicates if the user is active in the system. A: u_users- Incorrect. The prefixu_is typically used forcustom tablescreated by administrators. This is not a default system table. B: sys_users- Incorrect. The correct name issys_user(singular), notsys_users. ServiceNow follows a singular naming convention for system tables. C: x_users- Incorrect. The prefixx_is reserved forScoped Applicationscreated within an instance. The User table is a core system table, not a scoped one. ServiceNow Product Documentation # User Administration # sys_user Table ServiceNow Tables Reference # sys_user ServiceNow CSA Study Guide # User and Data Administration Understanding the sys_user Table:Explanation of Incorrect Answers:References from Certified System Administrator (CSA) Documentation:
CSA Exam Question 143
Which term best describes something that is created, has worked performed upon it, and is eventually moved to a state of closed?
Correct Answer: D
In ServiceNow, ataskis a record that represents work that needs to be completed. It follows a lifecycle where it is: Created- A task is generated, either manually or automatically (e.g., an incident, change request, or problem record). Worked Upon- Users perform necessary actions, update statuses, and progress the task towards resolution. Closed- Once completed, the task reaches a closed state, indicating that no further action is needed. Tasks in ServiceNow are derived from theTask [task]table. Common task-based records includeIncidents, Change Requests, Problems, and Service Requests. Tasks follow a defined workflow and state transitions (e.g., New # Work in Progress # Resolved # Closed). Key Features of a Task: A). Report: A report is a visualization of data and does not follow a lifecycle involving work or closure. B). Workflow: A workflow definesprocess automationand the movement of tasks, but it is not something that gets "worked upon" directly like a task. C). Event: Events are system-generated triggers that notify or automate actions, but they do not have a structured lifecycle like a task. Why Other Options Are Incorrect: ServiceNow Documentation:Task Management in ServiceNow CSA Exam Guide:Coverstask recordsas fundamental entities that go through a lifecycle. Reference from CSA Documentation:Thus, the correct answer isD. Task.
CSA Exam Question 144
What is the definition of a group?
Correct Answer: C
In ServiceNow, aGroupis acollection of userswho share common responsibilities and access rights within the system. Groups are primarily used to facilitate: Role-Based Access Control (RBAC):Assigning roles and permissions collectively to a set of users. Task Assignment:Groups can be assigned to handle incidents, change requests, and approvals. Notification Management:Groups can be used for sending system notifications to multiple users at once. C: A collection of users Agroupin ServiceNow consists of multiple users who work together on tasks, approvals, or system activities. Groups simplify user administration by allowing permissions and responsibilities to be assigned collectively instead of individually. Examples of groups: Service Desk(handles incident tickets) Change Advisory Board (CAB)(approves change requests) HR Team(manages HR cases) A: An escalation pod ServiceNow doesnotuse the term"escalation pod"to define a group. Escalations are handled through priority rules and workflows, not groups. B: A department Adepartmentis an organizational unit (e.g., HR, IT, Finance), while agroupis a functional collection of users. Departments and groups are separate entities in ServiceNow. D: A collection of subject matter experts While some groupsmayconsist of SMEs, this isnot the definitionof a group. Groups can have users of different expertise levels, not just experts. E: A team of users Although groups may act as "teams," the officialServiceNow definitionof a group isa collection of users, which is more precise. "Team" is a more informal term, while "group" is the structured term used in the platform. References:Official ServiceNow Documentation:Groups and Users ServiceNow Administration Guide:User and Group Management
CSA Exam Question 145
What are examples of Ul Actions, relating to Lists? Choose 4 answers
Correct Answer: A,B,C,D
UI Actions related to Listsin ServiceNow provide ways to interact with and modify list data through differentUI elements. A: List Links Appear at thebottom of listsand provide actions such as"Create New"or"Save as Template." B: List Control Located in thelist title bar, allowing users to configure views, export data, and refresh lists. C: List Buttons Buttons added to a list form thattrigger specific actions, such as"Approve"or"Reject." D: List Context Menu Right-click menuon list records providing actions likeEdit, Delete, Assign, and Export. 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. Reference: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)