In the GuidewirePage Configuration Framework (PCF), locations are organized into a hierarchical structure to manage navigation and user context. When a requirement involves grouping multiple related pages under a single entry point—such as aTabin the Tab Bar or asidebar menu—the correct container to use is aLocation Group.
1. The Role of a Location Group
A Location Group is a "non-leaf" node in the PCF navigation tree. It does not display content itself; instead, it contains other locations (Pages, Popups, or even other Location Groups). In the context of the "Delinquencies" tab, the Location Group serves as the parent container that defines:
TheTabentry in the top-level navigation.
The list of child pages (Summary, Policy, Account).
Thenavigation menu(usually appearing on the left side of the screen) that allows users to switch between these three pages.
2. Why Other Options are Incorrect
Option A (Location Ref):This is a widgetinsidea container (like a Location Group or a Section) that simply points to another location. It is a "pointer," not the organizational container itself.
Option C (Location Ref Iterator):This is used to dynamically generate a set of links or locations based on an array of data (e.g., a tab for each Open Claim). It is not the standard way to define a static three-page tab structure.
Option D (Location):This is a generic term that encompasses Pages, Popups, and Worksheets. A single "Location" (specifically a Page) can only display one set of data. It cannot manage the multiple-page navigation required by the "Delinquencies" tab.
According to theInsuranceSuite Developer Fundamentalsguide, using a Location Group ensures that the user's context (like the selected Delinquency ID) is maintained as they click through the different sub-pages within that group. This provides a seamless UX where the application "remembers" which record is being inspected even as the view changes.
Submit