When adding a related list to a form, you choose the related list from the list callector, What is an example of a related list you might see on the list collector? Choose 3 answers:
Correct Answer: B,C,D
In ServiceNow, related lists display records that have a relationship with the current record based on reference fields or database relationships. When adding a related list to a form, users select from a List Collector, which shows available related lists based on table relationships. Correct Answers B . Catalog Task → Parent ✅ Catalog Tasks are individual work items that belong to a Request Item (RITM). The Parent field links a Catalog Task to its corresponding RITM. This related list allows users to view all Catalog Tasks associated with a parent request. C . HR Case → Parent ✅ In HR Service Delivery (HRSD), HR Cases track employee requests. The Parent field links an HR Case to a parent HR Case or HR Service Request. This related list allows HR agents to see all related sub-cases. D . Problem → Parent ✅ Problem Records can have a Parent-Child relationship where a child problem is linked to a larger problem. The Parent field is used to establish this hierarchy. This related list helps track all sub-problems linked to a main problem. Incorrect Answer Choices A . Release Phase == Parent ❌ "Release Phase" is not a standard related list in ServiceNow. The Release Management module uses phases, but they do not typically function as a Parent reference. E . Outage → Task Number ❌ While Outages can be linked to Tasks, they are not commonly referenced as a related list in standard implementations. A more appropriate relationship would be "Affected CI" rather than Task Number. Reference: ServiceNow Documentation: Related Lists Overview ServiceNow Configuration Guide: Adding Related Lists to Forms
Question 477
A customer has asked for the following updates to a form: * Make Resolution code mandatory, admin state is changed to Resolved. * Hide major incident check box, unless logged in user has Major incident Manager role What type of rules (s) would you use to implement this requirement?
Correct Answer: C
# UI Policies are the best way to implement dynamic form behavior such as making fields mandatory, hiding /showing fields, and setting values based on conditions. * Making "Resolution Code" mandatory when "State" is changed to "Resolved" * This requires a UI Policy that: * Condition: State = Resolved * Action: Set "Resolution Code" field to Mandatory = True * Hiding the "Major Incident" checkbox unless the logged-in user has the "Major Incident Manager" role * This requires another UI Policy that: * Condition: User does NOT have the role major_incident_manager * Action: Hide the field * Option A (Dictionary Design) # * The dictionary defines the structure of fields but does not control dynamic form behavior like field visibility or conditions. * Option B (Field Limiter) # * There is no such feature called "Field Limiter" in ServiceNow. * Option D (UI Design) # * "UI Design" is not a recognized concept in ServiceNow. UI Policies are used for form behavior changes. * Option E (Form Constraint) # * There is no "Form Constraint" feature in ServiceNow; ACLs and UI Policies control field behavior instead. Reference: ServiceNow UI Policy Documentation (Platform Configuration)
Question 478
What is the difference between UI Policy and UI Action?
Correct Answer: A
Question 479
What is a characteristic of importing data into ServiceNow?
Correct Answer: D
When importing data intoServiceNow, anImport Setis created, and aTransform Mapis used to map data from the Import Set table to a target table (such asincident,cmdb_ci, oruser). ATransform Mapdefineshow data from an Import Set is transferred to the target table. One of its key characteristics is that it can beused multiple times on the same import setto reprocess data or correct mapping errors. Import Set Table: Temporary storage for incoming data. Data remains in the Import Set table until transformed. Transform Map: Areusable mappingthat determines how fields in the Import Set correspond to fields in the target table. Can be runmultiple timeson the same Import Set data. Coalesce Fields: Usedbefore transformationto determine whether toupdate existing records or create new ones. Key Characteristics of Importing Data in ServiceNow: You import a CSV file into anImport Set Table. You apply aTransform Mapto map data to theUser (sys_user) table. If an issue occurs, you canrerun the Transform Map on the same Import Setinstead of reimporting the file. Example Scenario: A: An existing Transform Map can be used one time on the same import set- Incorrect. Transform Maps can be reusedmultiple times on the same Import Set data. B: Coalesce fields are used only after running Transform- Incorrect. Coalesce fields are used before transformationto determine if a record should be updated or inserted. C: Any user can manage and set up import sets- Incorrect. Onlyusers with the appropriate roles(such asimport_adminoradmin) can manage Import Sets. Explanation of Incorrect Answers: ServiceNow Product Documentation # Import Sets and Transform Maps ServiceNow CSA Study Guide # Data Import and Management ServiceNow Knowledge Base # Understanding Coalesce Fields in Import Sets References from Certified System Administrator (CSA) Documentation:
Question 480
You have heard about a new application released by SericeNow, You want to try it out, to-see if it might be useful for your company's ServiceNow implementation. What would be the best way to get hands-on experience with the new application?
Correct Answer: B
When testing a new ServiceNow application, the best practice is to first try it in a safe, non-production environment to avoid any unintended impact on your company's live instance. Why is "Activate the application plugin on your personal dev instance" the Correct Answer? Safe Testing Environment A personal developer instance (PDI) is provided by ServiceNow for testing and development. Activating a plugin in a PDI does not affect the company's production system. Allows Hands-On Experience Without Risk You can explore, configure, and test the new application in a personal dev instance. Any issues encountered will not disrupt business operations. Best Practice for ServiceNow Development ServiceNow recommends testing all new features in a sandbox or development instance before enabling them in a production environment. Incorrect Answer Choices Analysis: A . Check the latest release notes at docs.servicenow.com. ❌ Incorrect - While the release notes provide valuable information, they do not provide hands-on experience with the application. C . Search the wiki for the sales demo request form. ❌ Incorrect - ServiceNow has moved away from using wikis. Also, requesting a sales demo is not the best way to test an application yourself. D . Activate the application plugin on your company's production instance. ❌ Incorrect - Never test a new application directly in production. This can cause unexpected issues and impact live operations. Official ServiceNow Documentation Reference: ServiceNow Developer Program - Personal Developer Instances (PDI) 📖 ServiceNow Developer Instances ServiceNow Docs - Managing Plugins 📖 How to Activate Plugins Conclusion: The correct answer is: ✅ B. Activate the application plugin on your personal dev instance. This method allows safe testing and evaluation before considering implementation in a production environment.