Question

Difficulty: MediumDuplicate Management and Matching Rules

An administrator at Horizon Health builds and activates a custom Matching Rule on the Lead object using exact match logic on Mobile Phone and fuzzy match logic on First Name. However, users report that when manually creating new leads with matching phone numbers and names, the system allows the records to be saved without showing any alert or duplicate warning. What is the most likely reason for this behavior?

  1. The matching rule was activated, but no active duplicate rule has been configured to execute alert or block actions when matches are found.Answer
  2. B
    Custom matching rules on standard objects require an Apex trigger to execute user-facing duplicate warnings.
  3. C
    Matching rules automatically merge duplicate records upon save, bypassing the duplicate alert dialog in the user interface.
  4. D
    Fuzzy matching logic is supported only when importing records via bulk API tools, not during manual single-record creation.

Answer

The matching rule was activated, but no active duplicate rule has been configured to execute alert or block actions when matches are found.
In Salesforce Duplicate Management, matching rules only define the criteria used to search for potential duplicate records. To present an alert or block record creation, an administrator must create and activate a Duplicate Rule that references the Matching Rule and defines the enforcement action (such as Alert or Block).

Step-by-Step Solution

1
Differentiate between Matching Rules and Duplicate Rules in Salesforce.
Recognize that Matching Rules define WHICH fields and logic identify a potential duplicate, whereas Duplicate Rules define WHAT happens when a duplicate is found.
Activating a Matching Rule alone does nothing to intervene in user workflows until it is referenced inside an active Duplicate Rule.
2
Analyze the observed system behavior.
The record saves successfully without alerting or blocking the user.
Without an active Duplicate Rule specifying 'Alert' or 'Block' on record create/edit, Salesforce takes no action when the matching rule finds a match.

Key Concept

Separation of Matching Rules (criteria definition) and Duplicate Rules (action execution)
Rate this question