Question

Difficulty: Very hardAutomation Tool Selection

A renewable energy company requires two distinct automation solutions for its Operations team:
1. Automatically set the custom field 'Urgent Servicing Required' to True on an Equipment Asset record whenever it is created or edited with an Operational Status of 'Critical', ensuring field changes occur before saving to the database without additional DML transactions.
2. Provide an interactive step-by-step UI wizard on the Case record page that allows support agents to gather diagnostic inputs, calculate RMA eligibility, and create a replacement order record upon submission.

Which two automation features should an administrator combine to meet these requirements efficiently using declarative tools? (Select TWO)

  1. A Record-Triggered Flow optimized for Fast Field Updates (Before-Save) on the Equipment Asset objectAnswer
  2. A Screen Flow embedded on the Case Lightning Record PageAnswer
  3. C
    A Record-Triggered Flow configured for Actions and Related Records (After-Save) to update the Equipment Asset record fields
  4. D
    A Roll-up Summary field on the Account object that dynamically launches an Approval Process for Case diagnostics

Answer

The administrator should use a Record-Triggered Flow optimized for Fast Field Updates (Before-Save) for same-record updates on the Equipment Asset object, and a Screen Flow embedded on the Case record page for the interactive diagnostic wizard.
The correct selection combines a Fast Field Update (Before-Save) Record-Triggered Flow for efficient same-record updates prior to database commit, and a Screen Flow embedded on the Case record page to provide an interactive multi-step guided wizard for support representatives.

Step-by-Step Solution

1
Analyze Requirement 1: Field updates on the triggering record without extra database roundtrips.
Identify that Fast Field Updates (Before-Save Record-Triggered Flow) update the triggering record before it is written to the database, executing 10x faster than after-save updates.
Before-save flows alter record values in-memory prior to the commit phase, avoiding additional DML operations.
2
Analyze Requirement 2: Guided user interaction with diagnostic inputs and record creation on Case.
Identify Screen Flow as the only declarative automation tool that supports custom UI screens, user input collection, and branching logic.
Screen flows are specifically designed to provide interactive user experiences within Lightning pages.
3
Evaluate and discard non-optimal distractors.
After-save flows add unnecessary DML transactions for same-record updates, and roll-up summary fields cannot render interactive UI wizards.
Choosing incorrect trigger timing or mismatched declarative features causes performance degradation and fails user experience goals.

Key Concept

Selecting optimal Salesforce automation tools based on trigger timing (before vs. after save) and user interaction needs (Screen Flow vs. Record-Triggered Flow).
Rate this question