Duplicate Check Delta
Custom Objects
The dupcheck__dcDelta__c
object is a critical part of the Plauti Deduplicate architecture in Salesforce. It functions as a queue for records that are waiting to be analyzed for duplicates that are inserted via APIs.
Purpose
Duplicate Check Delta
serves as an internal staging area where new or updated records are held temporarily before the deduplication engine processes them.
When 100 records are imported into Salesforce, each one is placed into the Delta object. The Deduplicate engine will pick up and process these entries based on system availability and priority.
Fields & Metadata
Field Label | API Name | Type | Description |
---|---|---|---|
Duplicate Check Delta Name | Name | Auto Number | Unique identifier for the delta entry |
Key | dupcheck__key__c | Formula (Text) | A computed key combining object and type |
Object | dupcheck__object__c | Text(18) | API name of the object (e.g., Account , Lead ) |
Priority | dupcheck__Priority__c | Number(3, 0) | Processing priority; higher = processed earlier |
Type | dupcheck__Type__c | Picklist | Type of delta (e.g., Insert , Update ) |
Owner | OwnerId | Lookup(User, Group) | Standard owner field for routing or control |
Created By | CreatedById | Lookup(User) | System audit field |
Last Modified By | LastModifiedById | Lookup(User) | System audit field |
Developer Use Cases
- Direct Insertion: Developers can insert records directly into the Delta queue (
dupcheck__dcDelta__c
) to programmatically trigger duplicate analysis. This is useful in custom data flows, integrations, or admin tools. - Custom Prioritization: Adjust the
Priority
field to control processing order. Lower numbers indicate higher priority (e.g.,1
is processed before10
). The default value is10
. This allows you to prioritize key accounts or sensitive records for faster duplicate detection.
Updated 15 days ago