Which script can run when a record is displayed, inserted, updated, deleted, or when a table is queried?
Correct Answer: A
Detailed Explanation: Business Rulesin ServiceNow are server-side scripts that execute in response to database operations, such as when a record is displayed, inserted, updated, deleted, or queried. They are critical for automating processes, ensuring data integrity, and performing backend operations without user intervention. Business Rules can be set to run at different times, such as before or after the database action, depending on the requirement. (Reference: ServiceNow Documentation - Business Rules and Server-side Scripting)
CSA Exam Question 117
Which one of the following statements describes a characteristic of role assignment?
Correct Answer: A
InServiceNow Role Management, aroleis a collection ofpermissionsthat control what users can see and do within the platform. Role Hierarchy (Role Inheritance) Rolescan contain other roles(known asnested roles). When a user is assigned aparent role, theyinherit all child roleswithin it. Example: TheITIL roleincludesincident_managerandproblem_managerroles. AssigningITILto a userautomatically grants them all the permissions of the included roles. Roles Are Assigned by Administrators Typically, roles are assigned by aSystem Administratoror an authorized user. Role-Based Access Control (RBAC) ServiceNow usesRBACto control access to applications, records, and actions. B). Users can click on the Personalize Role feature to try different roles Incorrectbecause userscannot manually switch rolesunless they have theimpersonation privilege. C). A role is granted to a user by the System Administrator Partially correct, butnot the best answerbecause rolescan also be assigned via groupsor automated processes, not just by a System Administrator. D). Each user has a role in the ServiceNow platform Incorrectbecause not all usersmust have a role. Example:A self-service user can access the systemwithouthaving any specific role. ServiceNow Docs: Role-Based Access Control (RBAC)https://docs.servicenow.com/en-US/bundle/utah- platform-administration/page/administer/roles/reference/r_RBAC.html ServiceNow CSA Official Training Guide (User & Role Management) Key Characteristics of Role Assignment:Why the Other Options Are Incorrect?References from Certified System Administrator (CSA) Documentation:This confirms thatroles can contain other roles, and when a user is assigned a role, they inherit all roles within it.
CSA Exam Question 118
What type of field allows you to look up values from one other table?
Correct Answer: F
CSA Exam Question 119
IntegrationHub enables execution of third-party APIs as a part of a flow. These integrations are referred to as
Correct Answer: B
InServiceNow IntegrationHub, third-party API integrations within aFlow Designerflow are known asspokes. Aspokeis a scoped application containingFlow Designer actions and subflowsthat allow the flow to interact with external systems or ServiceNow applications. Spokes in IntegrationHub Aspokeis a collection ofpredefinedandcustomactions, subflows, and data streamsused to integrate with external systems. Spokes provide ano-code/low-codeapproach to integrating third-party applications. Examples ofprebuilt spokesavailable in ServiceNow include: Slack Spoke(for Slack API integrations) Microsoft Teams Spoke(for Teams integration) Jira Spoke(for integrating with Atlassian Jira) How Spokes Work When a flow needs to interact with an external system (e.g., sending data to Jira or retrieving information from Slack), itcalls an action from a spoke. Each spoke containsmultiple predefined actionsthat execute API requests or perform tasks like creating records, updating data, or fetching information. Comparison with Other Options A). an action# Incorrect Actions are individual steps in a flow, not the complete integration package. Actions exist inside spokes. C). a connection# Incorrect Aconnectionis a configuration that stores authentication details (e.g., API keys, OAuth tokens) used by a spoke. D). an integration step# Incorrect No such term as "integration step" exists in ServiceNow IntegrationHub. ServiceNow Docs - IntegrationHub Overview:https://docs.servicenow.com/en-US/bundle/utah-integrationhub /page/integrate/integrationhub/concept/integrationhub-overview.html ServiceNow Docs - Spokes in Flow Designer:https://docs.servicenow.com/en-US/bundle/utah-integrationhub /page/administer/integrationhub-spokes/concept/available-spokes.html Key Concepts Related to IntegrationHub and SpokesOfficial References from the Certified System Administrator (CSA) Documentation:
CSA Exam Question 120
What are the two aspects to LDAP Integration?
Correct Answer: A,D
LDAP (Lightweight Directory Access Protocol) Integrationin ServiceNow enables organizations to connect theircorporate directory services (such as Microsoft Active Directory)with their ServiceNow instance. This integration helps manageuser authentication and data synchronizationefficiently. There aretwo key aspectsof LDAP Integration in ServiceNow: Authentication LDAP is commonly used foruser authentication, allowing users to log in to ServiceNow using theircorporate credentials. Instead of storing passwords in ServiceNow, authentication requests are sent to theLDAP serverto verify the user ' s identity. This helps in maintainingcentralized identity managementacross the organization. Data Population LDAP can be used toimport user and group informationinto ServiceNow. This process is known asdata synchronization, where attributes such asusernames, email addresses, department details, roles, and group membershipsare pulled from LDAP and stored in ServiceNow. This ensures that user information in ServiceNow isalways up-to-datewith the organization ' s directory. B). Data Formatting- While ServiceNow does process data from LDAP, " Data Formatting " isnotan aspect of LDAP integration. Formatting refers to structuring or modifying data but is not a core function of LDAP integration. C). Authorization- Authorizationdetermines what a user can doafter authentication, such as assigning roles and permissions. While ServiceNow can use LDAPgroupsto assign roles, the integration itselffocuses on Authentication and Data Populationrather than defining permissions within ServiceNow. ServiceNow Docs: LDAP Integration Overviewhttps://docs.servicenow.com/en-US/bundle/utah-platform- administration/page/integrate/authentication/concept/c_LDAPIntegration.html ServiceNow CSA Official Training Guide (LDAP Integration & User Authentication) Why the Other Options Are Incorrect?References from Certified System Administrator (CSA) Documentation: This confirms that the two main aspects of LDAP Integration in ServiceNow areAuthentication and Data Population.