正解:D
A Related List in ServiceNow is used to display records from other tables that are related to the current record. It helps users view and manage associated records without navigating away from the main record they are working on.
Key Features of Related Lists:
Related Lists appear at the bottom of a form view.
They display records from tables that have a relationship (via reference fields, many-to-many relationships, or database joins) with the current table.
Users can add, remove, or modify related records directly from the Related List, depending on their permissions.
Why "D. To present related records" is the correct answer?
Related Lists show records from another table that have a relationship with the current record. For example:
An Incident record may have a Related List showing all Tasks associated with it.
A User record may have a Related List displaying Group Memberships.
A Change Request record may have a Related List displaying all related CI (Configuration Items).
Explanation of Incorrect Options:
Option A: "To create a one-to-many relationship" - Incorrect. While Related Lists often display one-to-many relationships, they do not create them. Relationships are defined through reference fields, many-to-many tables, or database joins.
Option B: "To dot-walk to a core table" - Incorrect. Dot-walking allows users to access related fields from referenced records, but it is not the purpose of a Related List.
Option C: "To present related fields" - Incorrect. Related Lists display related records, not just individual fields. Related fields can be accessed using dot-walking or reference fields but are not the same as Related Lists.
Reference from Certified System Administrator (CSA) Documentation:
ServiceNow Product Documentation - Related Lists
ServiceNow CSA Study Guide - Configuring Forms and Lists
ServiceNow Docs: Relationships in Tables