Here are some cool ideas on ways you can use the code in Zoho CRM:To understand how this is done is to first understand the relationship between lookup modules. When a multi-select lookup is made between two modules (eg; Contacts & Deals), a Linking Module (Contacts_X_Deals) is created. This linking module stores information of both Contacts & Deals, allowing a many-to-many relationship to be established.
Here are some cool ideas on ways you can use the code in Zoho CRM:To understand how this is done is to first understand the relationship between lookup modules. When a multi-select lookup is made between two modules (eg; Contacts & Deals), a Linking Module (Contacts_X_Deals) is created. This linking module stores information of both Contacts & Deals, allowing a many-to-many relationship to be established.
The linking module, unlike regular modules in CRM, is not visible from the front-end. The way to find it is to run an API call that gets ALL modules in CRM. This function reveals all modules in CRM (including hidden ones) and its respective fields.
CRM Connections needed for API Call:
response = invokeurl
[
url: "https://www.zohoapis.com/crm/v2/settings/modules"
type: GET
connection: "INSERT YOUR CONNECTION NAME HERE"
];
info response;
mp = Map();
mp.put("lookupfield_A", "A_record_ID");
mp.put("lookupfield_B", "B_record_ID");
create = zoho.crm.createRecord("Linking_Module_Name",mp);
Book a free 30-minutes consultation with a Zoho expert or send us an email