Print

Zoho Deluge: Search Records with Special Characters (COQL)

What?
This is an article to remind me how to search for CRM records by a value that may contain an ampersand or parenthesis.

Why?
I wrote this article because some searches will work for me and sometimes it won't. Escaping the ampersand with a backslash or url encoding to %26 wasn't working for me. I spent several hours trying to write a script that could search for the existing records by company name. The issue is that if you use zoho.crm.searchRecords() this will work fine for company names without special characters such as the ampersand or parentheses. But what if amongst your records you may want to find:
copyraw
Company Name: Father & Sons (Incorporated)
Contact Name: O'Reilly
  1.  Company Name: Father & Sons (Incorporated) 
  2.  Contact Name: O'Reilly 

How?
Well I've tried various replace methods with regular expressions but the only method reliable enough I have found to work each time is using the CRM Object Query Language or Zoho's COQL. Similar to SQL but subject to similar issues of escaping special characters...

1. Setup a CRM Connection to Search Records via API
I won't go into detail on how to set up your own connection as I have elsewhere on my website, but to use in an invokeUrl here's a quick overview:
  1. ZohoCRM > Setup > Developer Space > Connections
  2. Click on Get Started / Add New Connection
  3. Click on the "Zoho OAuth" icon
  4. Enter a Connection name (for this example I will call it "CRM API v2")
  5. Select the appropriate scope(s):
    • ZohoCRM.coql.READ Required!
    • ZohoCRM.modules.{module_name}.{operation_type} or ZohoCRM.modules.all
  6. Click Create and Connect
  7. You will be prompted to allow permissions, so click on "Accept/Allow"
2. Determine the client datacenter
Look at the URL (website address) of the CRM you are wanting to do this on. The part after Zoho is the top level domain (TLD) and will be either .COM, .EU or as per your region. If the first part of your URL says: 3. The Deluge Code - Uses the EU datacenter
Note that using this method, you don't have to escape parentheses characters ():
copyraw
// initialize
v_MatchedCount = 0;
v_MatchedAccountID = 0;
v_SearchName = "Father & Sons (Incorporated)";
//
// replace apostrophes with double apostrophe for sql
v_SearchName = v_SearchName.replaceAll("'","''",true);
//
// replace ampersand with unicode value
v_SearchName = v_SearchName.replaceAll("&","\u0026",true);
//
// build up COQL query
v_CoqlQuery = "select id from Accounts where Name='" + v_SearchName + "'";
//
// build up parameters
m_Params = Map();
m_Params.put("select_query",v_CoqlQuery);
//
// invokeurl
r_Coql = invokeurl
[
    url :"https://www.zohoapis.eu/crm/v2/coql"
    type :POST
    parameters:m_Params.toString()
    connection:"crm_api_v2"
];
//
// retrieve results
if(!isNull(r_Coql.get("info")))
{
    v_MatchedCount = ifnull(r_Coql.get("info").get("count"),0);
}
if(!isNull(r_Coql.get("data")))
{
    v_MatchedAccountID = ifnull(r_Coql.get("data").get(0).get("id"),0);
}
  1.  // initialize 
  2.  v_MatchedCount = 0
  3.  v_MatchedAccountID = 0
  4.  v_SearchName = "Father & Sons (Incorporated)"
  5.  // 
  6.  // replace apostrophes with double apostrophe for sql 
  7.  v_SearchName = v_SearchName.replaceAll("'","''",true)
  8.  // 
  9.  // replace ampersand with unicode value 
  10.  v_SearchName = v_SearchName.replaceAll("&","\u0026",true)
  11.  // 
  12.  // build up COQL query 
  13.  v_CoqlQuery = "select id from Accounts where Name='" + v_SearchName + "'"
  14.  // 
  15.  // build up parameters 
  16.  m_Params = Map()
  17.  m_Params.put("select_query",v_CoqlQuery)
  18.  // 
  19.  // invokeUrl 
  20.  r_Coql = invokeUrl 
  21.  [ 
  22.      url :"https://www.zohoapis.eu/crm/v2/coql" 
  23.      type :POST 
  24.      parameters:m_Params.toString() 
  25.      connection:"crm_api_v2" 
  26.  ]
  27.  // 
  28.  // retrieve results 
  29.  if(!isNull(r_Coql.get("info"))) 
  30.  { 
  31.      v_MatchedCount = ifnull(r_Coql.get("info").get("count"),0)
  32.  } 
  33.  if(!isNull(r_Coql.get("data"))) 
  34.  { 
  35.      v_MatchedAccountID = ifnull(r_Coql.get("data").get(0).get("id"),0)
  36.  } 
Note that for the above, if there are no matching records, r_Coql will simply return an empty string. Hence the check for isNull on the keys info and data.

And yes, the part that took me about 8 hours and the key point above is to replace the ampersand with its unicode equivalent. I consider myself familiar with Transact-SQL, Oracle PL/SQL and MySQL all of which have various ways of escaping the ampersand (except for MySQL which doesn't need to and in my opinion is the best SQL).

Regular expression reminder (do not use):
copyraw
v_SearchName = v_SearchName.replaceAll("([&\'])","\\$1",false);
  1.  v_SearchName = v_SearchName.replaceAll("([&\'])","\\$1",false)

Source(s)
Category: Zoho :: Article: 729