正解:B
In ServiceNow, UI Actions are used to add buttons, links, and context menu items to forms and lists, enabling users to perform specific actions easily. UI Actions are essential for customizing the user experience and streamlining workflow interactions.
Understanding UI Actions in ServiceNow:
UI Actions allow administrators to create interactive elements such as:
Buttons (e.g., "Save," "Approve," "Reject")
Form Links (Clickable links that trigger actions on a record)
Context Menu Items (Right-click menu options for records in lists and forms) They can execute client-side (via JavaScript) or server-side (via scripts or GlideRecord API calls).
UI Actions enhance usability by allowing quick execution of tasks without navigating through multiple screens.
Why is Option B (UI Action) Correct?
✅ Buttons, form links, and context menu items are all created and managed using UI Actions in ServiceNow.
UI Actions define what happens when a button or menu item is clicked, including executing scripts, navigating to a different page, or performing an operation on a record.
Why Are the Other Options Incorrect?
❌ A. Business Rule
Business Rules run automatically on the server-side when records are inserted, updated, deleted, or queried.
They do not create buttons, links, or context menu items on the UI.
❌ C. Client Script
Client Scripts execute on the client-side (browser) and are used for form validation, field changes, and UI behavior modifications.
They do not create UI elements like buttons or menu items.
❌ D. UI Policy
UI Policies dynamically change form field behavior (e.g., hiding, showing, making fields mandatory, or read-only).
They do not add buttons or context menu items.
Reference from Certified System Administrator (CSA) Documentation:
📌 ServiceNow Docs - UI Actions Overview
🔗 ServiceNow UI Actions Documentation
"UI Actions add buttons, links, and context menu items on forms and lists to enhance user interaction with the ServiceNow platform."