InServiceNow, aUseris arecordstored in theUser [sys_user]table. This table contains details about every user in the system, including theirname, email, roles, department, and more.
Stores Core User Information
Each user inServiceNow is represented as a record in this table.
Standard fields include:
User ID
Name
Email
Roles
Department
Location
Supports Authentication and Permissions
Users areassigned roles and groups, which controlwhat they can accessin ServiceNow.
Authentication methods likeLDAP, SSO, OAuth, and Local Authenticationrely on this table.
Integrates with Other ServiceNow Modules
Users insys_userare referenced in various tables, such as:
sys_user_role(User Roles)
sys_user_group(User Groups)
sys_user_has_role(Mapping between Users and Roles)
Key Characteristics of the User [sys_user] Table:
A. A user is a record stored in the User Preference [sys_user_preference] tableIncorrect– Thesys_user_preferencetablestores user-specific preferences (e.g., UI settings, default views), not user records.
B. A User is a record stored in the Profile [sys_user_profile] tableIncorrect– There isno standard "sys_user_profile" tablein ServiceNow.
C. A user is a field in the LDAP integrationIncorrect– WhileLDAP can import users into ServiceNow,users themselves are stored in the sys_user table, not in an LDAP-specific field.
Incorrect Answer Choices Analysis:
ServiceNow Docs – User Administration📖Managing Users in ServiceNow
ServiceNow Docs – User Table (sys_user)📖sys_user Table Overview
Official ServiceNow Documentation References:
Conclusion:The correct answer is:
D. A user is a record stored in the User [sys_user] table
Alluser records in ServiceNow are stored in the sys_user table, making it the central repository foruser management, authentication, and access control.