Create or Update Data in Multilookup by Deluge Zoho CRM

Create or Update Data in Multilookup by Deluge Zoho CRM

Hello Team,

if you want to update and create a record's Multi lookup Field by deluge,

When you using a Multi lookup then Create a Cross Module Like this.


Take Course Multi Lookup in Student then create cross Module.



Now a New Module will be create inside the zoho CRM

and use this deluge

  1. lis = {4655606000005375438,4655606000005375433,4655606000005375428,4655606000005375423};
  2. for each rec in lis
  3. {
  4. mp = Map();
  5. mp.put("Studetnts", 4655606000005375455);
  6. mp.put("Courses",rec.toString());
  7. resvp = zoho.crm.createRecord("Students_X_Courses", mp);
  8. info resvp;
  9. }