a. To replace outdated, inadequate, custom business applications and processes b. To extend service delivery and management to all enterprise departments c. To allow users full access to all ServiceNow tables, records, and fields d. To extend the value of ServiceNow
Correct Answer: D
The correct combination of statements is a, b, and d. These are possible reasons to build custom applications on ServiceNow: * To replace outdated, inadequate, custom business applications and processes. Building custom applications on ServiceNow can help digitize and automate manual or legacy processes that are not covered by existing ServiceNow solutions. This can improve efficiency, data quality, user experience, and innovation. * To extend service delivery and management to all enterprise departments. Building custom applications on ServiceNow can help provide consistent and scalable services across different functions and teams in the organization. This can enhance collaboration, visibility, productivity, and customer satisfaction. * To extend the value of ServiceNow. Building custom applications on ServiceNow can help leverage the capabilities and benefits of the Now Platform, such as low-code development tools, workflow automation engine, AI-powered insights, security operations, etc. This can increase agility, resilience, performance, and value. The statement c is not a valid reason to build custom applications on ServiceNow: * To allow users full access to all ServiceNow tables, records, and fields. Building custom applications on ServiceNow does not imply granting users full access to all data and objects in ServiceNow. Access control rules still apply tocustom applications and their components to ensure security and compliance. Reference: Build Custom Apps in ServiceNow - eBook
When configuring a REST Message, the Endpoint is: The URI of the data to be accessed, queried, or modified. This is the correct answer because the Endpoint is the part of the REST Message that specifies the location and the resource of the REST provider. The Endpoint is composed of the base URL and the resource path, which can include query parameters or variables. For example, the Endpoint for a REST Message that retrieves the weather information for a city from a web service could be https://api.openweathermap.org/data/2.5/weather?q=London. The following are not correct definitions of the Endpoint when configuring a REST Message: The commands to the REST script to stop execution. This is not correct because the commands to the REST script to stop execution are not part of the REST Message, but of the Scripted REST API, which is a feature that allows users to create custom REST endpoints on the ServiceNow platform. The commands to the REST script to stop execution are methods of the RESTAPIResponse object, such as setStatusCode, setError, or complete. Information about the format of the returned data. This is not correct because the information about the format of the returned data is not part of the Endpoint, but of the HTTP headers or the Accept field of the REST Message. The HTTP headers or the Accept field can be used to specify the content type of the response, such as JSON, XML, or HTML. The response from the provider indicating there is no data to send back. This is not correct because the response from the provider indicating there is no data to send back is not part of the Endpoint, but of the HTTP status code or the response body of the REST Message. The HTTP status code or the response body can be used to indicate the result of the REST request, such as 200 OK, 404 Not Found, or 500 Internal Server Error. Reference: REST Messages, Scripted REST APIs
Question 59
Which one of the following is NOT a UI Action type?
Correct Answer: D
A UI Action is a button, link, or choice that can be clicked by a user to perform an action, such as submitting a form or running a script. The following are UI Action types: List choice. This is a UI Action that appears as a choice list on a list of records. It can be used to perform an action on multiple records at once, such as deleting or updating them. Form button. This is a UI Action that appears as a button on a form. It can be used to perform an action on the current record, such as saving or approving it. List banner button. This is a UI Action that appears as a button on the banner of a list of records. It can be used to perform an action on the entire list, such as exporting or printing it. The following is not a UI Action type: Form choice. This is not a UI Action type, but a field type. A form choice is a field that displays a choice list on a form. It can be used to select a value from a predefined set of options, such as priority or state. References: UI Actions, Field Types
Question 60
Which items are valid UI Action types in ServiceNow? Choose 3 answers
Correct Answer: C,E,F
In ServiceNow, UI Actions are elements that facilitate user interaction within the platform, enabling users to perform specific actions such as form submissions, record updates, or triggering workflows. The valid types of UI Actions include: Form Button: A button displayed on a form that, when clicked, executes a defined action. Form Context Menu: An option added to the context menu of a form, providing additional actions related to the form's record. Form Link: A hyperlink on a form that directs users to another page or executes a script. List Banner Button: A button displayed in the banner area of a list, allowing actions to be performed on multiple records simultaneously. List Choice: An option added to the list context menu for individual records, enabling actions on a selected record. List Link: A hyperlink in a list that directs users to another page or executes a script. Record Navigation Button: Buttons that facilitate navigation between records, such as Next and Previous buttons. Options like "Workflow action" and "Form choice" are not recognized as standard UI Action types in ServiceNow. For comprehensive details, refer to the official ServiceNow documentation on UI Actions.