For Zoho Services only:


I'm actually part of something bigger at Ascent Business Solutions recognized as the top Zoho Premium Solutions Partner in the United Kingdom.

Ascent Business Solutions offer support for smaller technical fixes and projects for larger developments, such as migrating to a ZohoCRM.  A team rather than a one-man-band is always available to ensure seamless progress and address any concerns. You'll find our competitive support rates with flexible, no-expiration bundles at http://ascentbusiness.co.uk/zoho-support-2.  For larger projects, check our bespoke pricing structure and receive dedicated support from our hands-on project consultants and developers at http://ascentbusiness.co.uk/crm-solutions/zoho-crm-packages-prices.

The team I manage specializes in coding API integrations between Zoho and third-party finance/commerce suites such as Xero, Shopify, WooCommerce, and eBay; to name but a few.  Our passion lies in creating innovative solutions where others have fallen short as well as working with new businesses, new sectors, and new ideas.  Our success is measured by the growth and ROI we deliver for clients, such as transforming a garden shed hobby into a 250k monthly turnover operation or generating a +60% return in just three days after launch through online payments and a streamlined e-commerce solution, replacing a paper-based system.

If you're looking for a partner who can help you drive growth and success, we'd love to work with you.  You can reach out to us on 0121 392 8140 (UK) or info@ascentbusiness.co.uk.  You can also visit our website at http://ascentbusiness.co.uk.

ZohoCRM: Process all records of a module

What?
A quick article to document a method of looping through all the records of a module and processing these with the ability auto-resume without processing the same record twice.

Why?
Whether you have a few hundred records, or a few hundred thousand records, we sometimes want to write a function that will check each record and mark it so that the process doesn't repeat on records that have already been checked.

Some solutions have worked in the past where you could simply add a checkbox and do a search where this value is false; but lately this hasn't been working for me. To this end, I have thought of an alternative that I now use frequently in client systems.

How?
The gist is that we add a checkbox called "Processed" which will have a datatype Boolean. Our function will then loop through each record and do what it has to do. The workaround here is that we order this by modified time. When the checkbox gets updated, this modifies the record and puts it at the bottom of the list.

In a nutshell:
  1. [Optional]: Deactivate any workflows that this process would affect
  2. Go to the Module Layout and drag a "Checkbox" field on to the module
  3. We'll call ours "Processed" but it really doesn't matter as long as it's a field to update
  4. In your code, sort a list by "Modified_Time", loop through and update each iterated record. (see sample code below).
  5. Go to the list view in CRM and filter by "Processed" is "Selected", check after each run of the function that the number has incremented.
  6. Once all records are done, return to the Module Layout and delete the "Processed" field.
  7. [Optional conditionally] Reactivate any workflows you deactivated in step 1.

Sample Code
Consider the following standalone function which loops through every contact and deletes the duplicate lead (if a lead exists with the same email as a contact):
copyraw
// init
v_Count = 0;
v_CountDeleted = 0;
//
// sort criteria for our selection
m_Criteria = Map();
m_Criteria.put("sort_order","asc");
m_Criteria.put("sort_by","Modified_Time");
//
// get 100 records
l_Contacts = zoho.crm.getRecords("Contacts", 1, 100, m_Criteria);
//
// loop through each contact record
for each r_Contact in l_Contacts
{
    v_Count = v_Count + 1;
    if(!isnull(r_Contact.get("Email")))
    {
        v_Email = r_Contact.get("Email");
        //
        // find all lead records matching this email
        l_Leads = zoho.crm.searchRecords("Leads","Email:equals:" + v_Email);
        for each  r_Lead in l_Leads
        {
            // check this is a record with an ID
            if(!isnull(r_Lead.get("id")))
            {
                // delete this lead record
                m_Delete = Map();
                m_Delete.put("module","Leads");
                m_Delete.put("id",r_Lead.get("id"));
                r_Delete = zoho.crm.invokeConnector("crm.delete",m_Delete);
                v_CountDeleted = v_CountDeleted + 1;
            }
        }
    }
    //
    // update this contact record irrespective of whether a lead was matched
    m_UpdateContact = Map();
    m_UpdateContact.put("Processed",true);
    r_UpdateContact = zoho.crm.updateRecord("Contacts", r_Contact.get("id").toLong(), m_UpdateContact);
}
return "Deleted " + v_CountDeleted + " of " + v_Count;
  1.  // init 
  2.  v_Count = 0
  3.  v_CountDeleted = 0
  4.  // 
  5.  // sort criteria for our selection 
  6.  m_Criteria = Map()
  7.  m_Criteria.put("sort_order","asc")
  8.  m_Criteria.put("sort_by","Modified_Time")
  9.  // 
  10.  // get 100 records 
  11.  l_Contacts = zoho.crm.getRecords("Contacts", 1, 100, m_Criteria)
  12.  // 
  13.  // loop through each contact record 
  14.  for each r_Contact in l_Contacts 
  15.  { 
  16.      v_Count = v_Count + 1
  17.      if(!isnull(r_Contact.get("Email"))) 
  18.      { 
  19.          v_Email = r_Contact.get("Email")
  20.          // 
  21.          // find all lead records matching this email 
  22.          l_Leads = zoho.crm.searchRecords("Leads","Email:equals:" + v_Email)
  23.          for each  r_Lead in l_Leads 
  24.          { 
  25.              // check this is a record with an ID 
  26.              if(!isnull(r_Lead.get("id"))) 
  27.              { 
  28.                  // delete this lead record 
  29.                  m_Delete = Map()
  30.                  m_Delete.put("module","Leads")
  31.                  m_Delete.put("id",r_Lead.get("id"))
  32.                  r_Delete = zoho.crm.invokeConnector("crm.delete",m_Delete)
  33.                  v_CountDeleted = v_CountDeleted + 1
  34.              } 
  35.          } 
  36.      } 
  37.      // 
  38.      // update this contact record irrespective of whether a lead was matched 
  39.      m_UpdateContact = Map()
  40.      m_UpdateContact.put("Processed",true)
  41.      r_UpdateContact = zoho.crm.updateRecord("Contacts", r_Contact.get("id").toLong(), m_UpdateContact)
  42.  } 
  43.  return "Deleted " + v_CountDeleted + " of " + v_Count; 

Additional Notes
As a preliminary measure, I deactivate any workflows in CRM that this process would affect. In the example above, all workflows relating to the Contacts and Leads module.

Lastly, I'm usually asked to update all records and there are at least 10 thousand if not 100 thousand records. The code I use is a for loop within a for loop or in other words 5 pages (as each page is limited to 200) and 1000 records is the sweet spot in which case the loading bar disappears but the function usually completes all 1000 every 5-10 minutes:
copyraw
// init
v_CountFound = 0;
v_CountUpdated = 0;
l_Pages = {1,2,3,4,5};
v_PerPage = 200;
for each  v_Page in l_Pages
{
	m_SortCriteria = Map();
	m_SortCriteria.put("sort_order","asc");
	m_SortCriteria.put("sort_by","Modified_Time");
	l_Records = zoho.crm.getRecords("Contacts",v_Page,v_PerPage,m_SortCriteria);
	for each  r_Record in l_Records
	{
		if(!isnull(r_Record.get("id")))
		{
			// re-init
			m_Update = Map();
			v_RecordID = r_Record.get("id");
			v_CountFound = v_CountFound + 1;
			// 
			// other field update
			if(!isnull(r_Record.get("Account_Name")))
			{
				// do other stuff
				v_CountUpdated = v_CountUpdated + 1;
			}
			// 
			// update the record irrespectively
			m_Update.put("Processed",true);
			r_Update = zoho.crm.updateRecord("Contacts",v_RecordID,m_Update);
		}
	}
	if(l_Records.size()<v_PerPage)
	{
		break;
	}
}
return "Updated " + v_CountUpdated + " of " + v_CountFound;
  1.  // init 
  2.  v_CountFound = 0
  3.  v_CountUpdated = 0
  4.  l_Pages = {1,2,3,4,5}
  5.  v_PerPage = 200
  6.  for each  v_Page in l_Pages 
  7.  { 
  8.      m_SortCriteria = Map()
  9.      m_SortCriteria.put("sort_order","asc")
  10.      m_SortCriteria.put("sort_by","Modified_Time")
  11.      l_Records = zoho.crm.getRecords("Contacts",v_Page,v_PerPage,m_SortCriteria)
  12.      for each  r_Record in l_Records 
  13.      { 
  14.          if(!isnull(r_Record.get("id"))) 
  15.          { 
  16.              // re-init 
  17.              m_Update = Map()
  18.              v_RecordID = r_Record.get("id")
  19.              v_CountFound = v_CountFound + 1
  20.              // 
  21.              // other field update 
  22.              if(!isnull(r_Record.get("Account_Name"))) 
  23.              { 
  24.                  // do other stuff 
  25.                  v_CountUpdated = v_CountUpdated + 1
  26.              } 
  27.              // 
  28.              // update the record irrespectively 
  29.              m_Update.put("Processed",true)
  30.              r_Update = zoho.crm.updateRecord("Contacts",v_RecordID,m_Update)
  31.          } 
  32.      } 
  33.      if(l_Records.size()<v_PerPage) 
  34.      { 
  35.          break
  36.      } 
  37.  } 
  38.  return "Updated " + v_CountUpdated + " of " + v_CountFound; 
Category: Zoho :: Article: 758

Credit where Credit is Due:


Feel free to copy, redistribute and share this information. All that we ask is that you attribute credit and possibly even a link back to this website as it really helps in our search engine rankings.

Disclaimer: Please note that the information provided on this website is intended for informational purposes only and does not represent a warranty. The opinions expressed are those of the author only. We recommend testing any solutions in a development environment before implementing them in production. The articles are based on our good faith efforts and were current at the time of writing, reflecting our practical experience in a commercial setting.

Thank you for visiting and, as always, we hope this website was of some use to you!

Kind Regards,

Joel Lipman
www.joellipman.com

Related Articles

Joes Revolver Map

Accreditation

Badge - Certified Zoho Creator Associate
Badge - Certified Zoho Creator Associate

Donate & Support

If you like my content, and would like to support this sharing site, feel free to donate using a method below:

Paypal:
Donate to Joel Lipman via PayPal

Bitcoin:
Donate to Joel Lipman with Bitcoin bc1qf6elrdxc968h0k673l2djc9wrpazhqtxw8qqp4

Ethereum:
Donate to Joel Lipman with Ethereum 0xb038962F3809b425D661EF5D22294Cf45E02FebF
© 2024 Joel Lipman .com. All Rights Reserved.