Updating a Multi-select field with Deluge
Hi,
I created a custom module and I am using a custom function to generate a quote from an entry.
Now how can I link the quote to the entry in my custom module?
I tried to add the API name of the multiselect-field but it's not linking it.
- paramap = Map();
- paramap.put("Product_Details", products);
- paramap.put("Subject", subject);
- paramap.put("Contact_Name", contact);
- paramap.put("Account_Name", account);
- paramap.put("Deal_Name", deal);
- paramap.put("Description", description);
- // This doesn't work
- multiselect = List();
- multiselect.add(moduleId);
- paramap.put("FieldName", multiselect);
- createResp = zoho.crm.createRecord("Quotes", paramap);
I have to use a multiselect-field for the quotes as I want to link more than one quote to an entry.
Thanks in advance!