Which items are valid UI Action types in ServiceNow? (Choose 3 answers)
Correct Answer: C,D,E
Comprehensive and Detailed In-Depth Explanation: In ServiceNow, UI Actions are elements that make the user interface more interactive and tailored to user activities. They can appear as buttons, links, or context menu items on forms and lists. The valid types of UI Actions include: * C. Form choice: These are UI Actions that appear as choices in form context menus, allowing users to perform specific actions related to the form. * D. Form button: These are buttons that appear on forms, enabling users to execute defined actions directly from the form view. * E. List banner button: These are buttons that appear in the list view's banner, providing actions that can be performed on the list or selected records. The other options are not standard UI Action types: * A. Workflow action: While workflows can include actions, "Workflow action" is not a defined UI Action type in ServiceNow. * B. Record navigation button: This is not a standard term used for UI Action types in ServiceNow.
Question 112
Which statement correctly describes the differences between a Client Script and a Business Rule?
Correct Answer: A
Question 113
How many applications menus can an application have?
Correct Answer: B
Reference: https://docs.servicenow.com/bundle/orlando-platform-user-interface/page/administer/navigation- and-ui/task/t_CreateAnApplicationMenu.html An application can have as many application menus as the application design requires. An application menu is a container for application modules, which are links to features or functionalities within an application. Application menus are displayed in the application navigator, which is the left sidebar of the ServiceNow interface. Developers can create and configure application menus using Studio or the Application Menus module. Application menus can have different roles and visibility settings, depending on the intended audience and purpose of the application. References: [ServiceNow Docs - Application menus], [ServiceNow Docs - Create an application menu]
Question 114
(What is the primary purpose of an application scope?)
Correct Answer: B
Application scope is a foundational concept in ServiceNow application development. ServiceNow documentation describes application scoping as a protection mechanism that identifies and restricts access to an application's files and data. In practice, scope defines an isolation boundary around an application's artifacts, such as tables, scripts, UI components, and other resources. This boundary helps prevent unintended interference between applications and reduces the risk of naming collisions or cross-application impacts. The scope model also works together with Application Access settings, which allow administrators to specify what parts of an application are accessible to other applications. By default, scoped applications are designed to keep resources private unless explicitly shared through access settings or cross-scope privileges. Because of this, the primary purpose of scope is not backups or UI design control, and it is explicitly not meant to enable unrestricted updates across applications. Instead, scope exists to define and enforce boundaries so that an application's resources remain isolated and protected unless intentionally exposed.
Question 115
Which one of the following is true?
Correct Answer: A
Created UI policy on incident form, action set's cmdb_ci field as mandatory and script as not. result, field was not mandatory. A UI Policy's Actions execute before the UI Policy's Scripts. Actions are predefined operations that can be applied to fields or sections, such as making them mandatory, read-only, visible, or setting a default value. Scripts are custom JavaScript code that can be used to perform more complex logic or validations. Actions are executed first, and then Scripts are executed if the UI Policy conditions are met. References: [ServiceNow Docs - UI policy actions], [ServiceNow Docs - UI policy scripts]