DreamHouse Realty は、顧客のガレージに設置されるリフトの数を追跡したいと考えています。カスタム リフト オブジェクトの [設置予定] カスタム チェックボックス フィールドをチェックし、リフトが販売された翌日に外部システムにアウトバウンド メッセージで通知する必要があります。このタスクを完了するには、どの自動化ツールを使用すればよいですか?
正解:C
A good app builder does not chase the most familiar label. The best answer is C. Flow. Screen flows guide a user through prompts, collect input, branch through decisions, and update records as part of a controlled interaction.
The selected answer is stronger because it meets both the functional requirement and the maintainability requirement. In a Salesforce implementation, a solution that only works for one user, one page, or one data sample is not good enough. The correct feature has to behave consistently across the intended profiles, record types, apps, and devices that are part of the design.
The distractors are not equal substitutes. A (Approval process) handles a different concern; An approval process is for formal sign-off, not for every automation, display, import, or security requirement. B (Validation rule) is less defensible because A validation rule blocks saves; it does not create records, route approvals, display components, or grant access. D (Assignment rule) would be fragile here because it could produce an inconsistent result once different users, records, or apps are tested. That is the kind of solution a Salesforce admin can document, migrate, and troubleshoot without creating hidden technical debt.
For guided work, a screen flow can ask questions in sequence, branch based on answers, and write results back to one or more records.
---