In ServiceNow, a role is a record stored in the sys_user_role table that defines a set of permissions for users. Roles determine what users can see and do within the platform by granting access to applications, modules, and specific functionalities.
Stored in the sys_user_role table.
Assign permissions to users and groups.
Define access to applications, modules, and records.
Can be inherited by users through group membership.
Used in Access Control Rules (ACLs) to restrict or allow access to records.
Key Features of Roles in ServiceNow:Common Roles in ServiceNow:Role Name
Description
admin
Full system access, including configuration and security settings.
itil
Allows access to IT Service Management (ITSM) modules like Incident, Change, and Problem.
catalog_admin
Manages the Service Catalog.
knowledge_manager
Manages the Knowledge Base.
Roles are stored as records in the sys_user_role table.
Each role grants specific permissions to users.
Users can have multiple roles assigned to them.
B. A role is one record in the Role [user_sys_role] table – Incorrect
The correct table name is sys_user_role, not "user_sys_role".
C. A role is a persona used in Live Feed Chat – Incorrect
Live Feed is a collaboration tool, but roles are not personas for chat.
D. A role is a set of modules for a particular application – Incorrect
Roles grant access to modules, but they are not the modules themselves.
ServiceNow Docs: User Roles & Permissions
ServiceNow CSA Study Guide – Role-Based Access Control
ServiceNow Product Documentation: sys_user_role Table
Why "A. A role is one record in the Role [sys_user_role] table" is the Correct Answer?Explanation of Incorrect Options:References from Certified System Administrator (CSA) Documentation: