Identify duplicates between leads and contacts modules

Identify duplicates between leads and contacts modules

Edition: Enterprise | Industry: Travel | Feature: Workflow rule and Functions


Scenario
Joshua Baker is a sales manager at an online travel agency that offers customized tour packages. The agency has a webform on its website through which interested people inquire about tour packages. Qualified inquiries (leads) are converted as contacts and a new deal is created. However, during this process, some duplicates are created in the database. For example, Kane Wilson inquired about and purchased a tour package last summer. Now, though he is already a customer in the database, when he makes another inquiry through the webform, his details are again captured as a new lead.  

Requirements
Joshua wants to:
  1. Identify the duplicate entries among customers and new inquiries
  2. Merge the duplicate entries
Solution
The webform captures the new inquiries in the Leads module and the customers (converted leads) in the Contacts module. Joshua creates a checkbox field named "Duplicates" in the Leads module.
 
1. Identifying duplicates between Leads and Contacts modules
The deduplication tool can identify duplicates within a single module, but you can use custom function to do it across multiple modules. So, in this case every time a new lead enters through the webform, a record is created in the Leads module and a custom function checks for duplicates in the Contacts module. In case a duplicate is found, the Duplicate checkbox field is marked.

a. Create a Custom Function to check the duplicate entries.
  1. Go to Setup > Developer Space Functions.
  2. Write the below function in the Deluge Script Editor.

    relcont = zoho.crm.searchRecords("Contacts", "(Email:equals:" + email + ")");
    relcontsize = relcont.size();
    if (relcontsize>0)
    {
    update = zoho.crm.updateRecord("Leads", leadid.toString(), {"Duplicate":true});
    }

  3. Click Edit Argument.
  4. Set the arguments to be used in the script. 

  5. Click Save.
 b. Create a workflow rule       

Module
Leads
Rule Name
Duplicate check
When to execute
Record action > Create
Condition
All leads
Actions
Functions > Duplicate 


2. Merging the duplicate records
In the Leads module, create a list view to filter the duplicate entries (Criteria: Duplicate is Selected). During Lead Conversion, you can either merge it with the existing contact or create a new contact. 



    • Related Articles

    • Can I send mass emails from custom modules?

      Yes, you can send mass emails from custom modules in the same way as from standard modules like Leads, Contacts, and Deals. To send mass emails from a custom module Go to the module which contains records you want to send mass emails to. Navigate ...
    • De-duplicate records (Auto-merge duplicates)

      In case you are not sure which records have been duplicated, you can let CRM run a check on modules using the De-duplicate tool. CRM will automatically find and merge exact matches. In case of conflicts in field values, you must manually resolve the ...
    • Customizing Modules

      Modules in Zoho CRM, let you categorize and track various aspects of your business such as Sales, Marketing, Customers, Products, Meetings and the like. Modules in Zoho CRM are represented in the form of tabs such as Leads, Contacts, Deals, Tasks ...
    • Converting Leads

      When there is a chance for further negotiations with a lead, it can be converted into an account, contact, and finally a deal. In short, once the lead status has reached a certain stage, it can be qualified as a deal. On conversion, a lead is ...
    • Can workflow for email be configured for modules other than Leads or Contacts?

      Yes, you can select Leads, Contacts, unknown, or custom modules. You can choose an unknown module when the sender is new or has not yet been added to your CRM account. Note that if you have selected an unknown module, it is mandatory to set ...