The ServiceNow platform supports a wide variety of plus-and-play application. You can choose from the included workflow or build your own workflow. Which of following these workflows are included in the platform?
Correct Answer: A,E,F
The ServiceNow platform providespre-built workflowsthat help organizationsautomate processesacross different domains. These workflows are designed to streamline operations, improve efficiency, and enhance user experience. Thethree primary types of workflowsincluded in the platform are: Employee Workflows- Designed to improve employee experiences, covering HR services, onboarding, workplace services, and more. Customer Workflows- Focused on customer service management (CSM), case management, field service management, and proactive customer engagement. IT Workflows- These workflows enable IT Service Management (ITSM), IT Operations Management (ITOM), and IT Business Management (ITBM) for efficient IT operations. B: Infrastructure Workflows-No specific "Infrastructure Workflows" exist as a built-in category in ServiceNow. Infrastructure processes are generally managed underIT Workflows (ITOM/ITSM). C: Federal Workflows-Not an official workflow category. Federal agencies useServiceNow's Government, Risk, and Compliance (GRC) solutions, but this is not classified as a workflow. D: Manufacturing Workflows-ServiceNow does not have a dedicated "Manufacturing Workflows" category. However, manufacturers often useCustomer and IT Workflowsfor managing operations. Reference:ServiceNow CSA Documentation - Workflows Overview ServiceNow Official Website - Workflow Automation(https://www.servicenow.com) Final answer: A, E, F (Employee Workflows, Customer Workflows, IT Workflows)
CSA Exam Question 157
What module enables an administrator to define destinations for imported data on any ServiceNow table?
Correct Answer: B
ATransform Mapin ServiceNow is used to define howimported datafrom external sources (such as CSV files, Excel sheets, or third-party integrations) is mapped into thetarget tablewithin the platform. They allowadministratorsto definefield mappingsbetween theimport set tableand thetarget table. Can includefield transformations, such as converting data formats or merging values. Supportscriptedtransformations usingonBefore and onAfter scripts. A: Field Transform- No such module exists in ServiceNow. Transform Maps handle field transformations. C: Schema Map- The Schema Mapvisualizestable relationships but doesnothandle data imports. D: Import Map- This isnot a valid ServiceNow module. The correct term isTransform Map. ServiceNow Transform Maps Documentation ServiceNow CSA Training Module:"Importing Data and Transform Maps" Key Features of Transform Maps:Why Other Answers Are Incorrect:References from Certified System Administrator (CSA) Official Documentation:
CSA Exam Question 158
What are the options that can be set to determine when a Business Rule executes? Choose 4 answers
Correct Answer: B,D,F,G
Business Rules are server-side scripts that run when a record is displayed, inserted, updated, or deleted. The " When " field on the Business Rule form determines exactly when the logic runs relative to the database operation. The four valid options are: * Display: Runs before the form is presented to the user (used to pass data from server to client via the Scratchpad). * Before: Runs after the user submits the form but before the data is written to the database. (Ideal for validation or updating the current record). * After: Runs immediately after the data is written to the database. (Ideal for updating related records). * Async: Runs after the data is written, but is processed by a background scheduler rather than immediately. (Ideal for external integrations or heavy calculations that shouldn ' t block the user ' s screen). * " Load, " " Change, " " Click, " and " Submit " are typically associated with Client Scripts (onLoad, onChange, onSubmit) or UI Actions, not Business Rules. Reference: ServiceNow Business Rules documentation lists the " When " options specifically as Display, Before, After, and Async.
CSA Exam Question 159
You have been asked to configure a form so an employee could a tablet and select the standard accessary options to purchase with it. These standard options are: carrying case, screen cleaner, tablet stand, and screen protector. What approach would you take? Choose 3 answers
Correct Answer: A,B,E
InServiceNow Service Catalog, the best practice for handling accessory selections is to usevariables or variable setswithin asingle catalog itemrather than creating multiple separate catalog items. A: Create a Catalog Item for the tablet and add a checkbox variable for each accessory option.Correct- Addingcheckbox variablesfor accessories allows users to select multiple options within a single request. Example variables: [#] Carrying Case [#] Screen Cleaner [#] Tablet Stand [#] Screen Protector This makes orderingsimpler and more user-friendly. B: Create a Catalog Item for the tablet, and add a variable set to the form for accessory options.Correct- AVariable Setis a reusable collection of variables that can be applied to multiple catalog items. This approach is beneficial if multipledevices (e.g., laptop, phone, tablet)sharethe same accessory options. The Variable Set can includecheckboxesfor selecting accessories. E: In Shopping Cart configuration, select the option to show the "Add Accessories" button.Correct- Enabling the"Add Accessories"button in theShopping Cartallows users to add related products as separate items in their order. This works well when accessories areseparate items in the catalogbut need to be linked for convenience. Best Practices for Configuring the Tablet and Accessories: C: Create one Catalog Item for each: tablet, carrying case, screen cleaner, tablet stand, and screen protector. Incorrect - Thisforces users to order accessories separately, making the processless efficient. Best practice is to keep accessorieswithin the same formunless they are standalone items. D: Create a Record Producer, and on the form, add a checkbox variable for each accessory option.Incorrect - Record Producerscreate records intables (e.g., Incident, Request, HR Case)but arenot used for Service Catalog ordering. Thecorrect approachis to use aCatalog Item with variablesinstead. Incorrect Answer Choices Analysis: ServiceNow Docs - Creating and Managing Catalog Items#Creating Service Catalog Items ServiceNow Docs - Variable Sets#Service Catalog Variable Sets ServiceNow Docs - Shopping Cart Configuration#Shopping Cart Configuration Official ServiceNow Documentation References: Conclusion:The correct answers are: A: Create a Catalog item for the tablet and add checkbox variables for accessories. B: Use a Variable Set for the accessory options. E: Enable the "Add Accessories" button in Shopping Cart configuration. This approachenhances user experience, ensures flexibility, and aligns with ServiceNow Service Catalog best practices.
CSA Exam Question 160
Which objects can be used in Inbound Action scripts?