Question

Difficulty: HardLightning App Builder Pages (App, Home, Record Pages)

A Salesforce administrator is customizing the user experience for a custom object named Work_Order__c within a dedicated app called Field_Service_App. The administrator must fulfill two specific operational requirements:
1. Ensure a customized Lightning Record Page displays only when users access Work_Order__c records assigned to the 'Emergency' Record Type while working in the Field_Service_App under the 'Field Technician' Profile.
2. Restrict visibility of a custom financial summary component on the page so it is displayed exclusively to users with the 'Financial_Auditor' custom permission, without altering object field permissions.

Which TWO statements correctly describe the valid configuration steps and behaviors in Lightning App Builder to achieve these requirements? (Select 2 choices)

  1. The custom Lightning Record Page must be activated using the 'App, Record Type, and Profile' assignment level, selecting Field_Service_App, the Emergency record type, and the Field Technician profile.Answer
  2. The financial summary component's visibility can be filtered using a Client/User filter criteria based on the $Permission.CustomPermission system variable for Financial_Auditor.Answer
  3. C
    Hiding the financial summary component via dynamic component visibility rules automatically restricts user access to the underlying field data across Reports, SOQL queries, and API exports.
  4. D
    To apply the specialized record page layout across users, a Lightning Home Page must be assigned to the combination of Field_Service_App, the Emergency Record Type, and the Field Technician Profile.
  5. E
    Assigning the customized Lightning Record Page to the Emergency Record Type automatically filters picklist field options displayed on the page without updating Record Type picklist settings.

Answer

The correct options are: (1) Activating the custom Lightning Record Page using the 'App, Record Type, and Profile' assignment level to target the specific application, record type, and profile combination; and (2) Filtering the financial summary component's visibility using a User filter criteria based on the custom permission system variable ($Permission.CustomPermission).
The requirement to target a custom page to a specific App, Record Type, and Profile combination directly matches the three-tier activation option available for Lightning Record Pages in the Activation Wizard. Furthermore, component visibility filters in Lightning App Builder can evaluate custom user permissions via $Permission, satisfying the requirement to show the financial summary component conditionally without altering global Field-Level Security.

Step-by-Step Solution

1
Evaluate record page activation hierarchy options for target user targeting.
Salesforce Lightning Record Pages support three activation levels: Org Default, App Default, and App + Record Type + Profile combination. To restrict a page to a specific App, Record Type, and Profile simultaneously, the administrator must use the App, Record Type, and Profile activation option.
This guarantees that users see the custom page layout only when viewing Emergency record type records within Field_Service_App under the Field Technician profile.
2
Evaluate dynamic component visibility criteria capabilities.
Lightning App Builder supports dynamic component visibility filters driven by record fields, user attributes, and system context (such as $Permission.CustomPermission).
Filtering by $Permission.CustomPermission.Financial_Auditor dynamically renders the component on the page layout for authorized users without modifying Field-Level Security (FLS) settings on the profile.
3
Analyze distractor statements regarding data security and activation limits.
Dynamic UI visibility does not enforce data-level security (FLS/SOQL/Reports). Additionally, Home Pages cannot be assigned by Record Type, and record page assignments do not alter picklist value options.
Underlying data access and picklist configurations remain managed via Field-Level Security and Object Record Type definitions respectively.

Key Concept

Lightning Record Page Activation Precedence and Dynamic Component Visibility Rules
Rate this question