Hello,
I recently switched to the new Deluge editor in Zoho CRM and I am editing an existing script but it returns an error: Improper code format Correct format : <return_type> <category>.<function_name>(<type> <arg1>, <type> <arg1>,...<type> <arg50>){ <code> }
I defined the three arguments:
- conID: Contacts / ID
- fname: Contacts / First name
- lname: Contacts / Last name
Here is the script:
- combinedaddress = zoho.crm.getRecordById("Contacts",conID);
- map = Map();
- map.put("Test_Adressfeld",fname + ' ' + lname);
- con = zoho.crm.updateRecord("Contacts",conID.tolong(),map);
- info map;
- info con;
What am I doing wrong?
Thanks for your help, M.