Assuming leaddetails is required, the following 5 results were found.
BEGIN // v_CustomerTimeZone = ""; // // build up address from Lead to geocode l_LeadAddress = List(); if(!isnull(r_LeadDetails.get("Street"))) { l_LeadAddress.add(r_LeadDetails.get("Street")); } if(!isnull(r_LeadDetails.get("City"))) {...
if(v_Type == "Leads") { if(!isnull(r_CallDetails.get("What_Id"))) { v_LeadID = r_CallDetails.get("What_Id").get("id"); r_LeadDetails = zoho.crm.getRecordById("Leads",v_LeadID); if(!isnull(r_LeadDetails.get("Twilio_Local_Number"))) { v_TwilioLocalNumber...
that CRM likes, and update the field: // // parse date into yyyy-MM-dd (using subString - reliable) v_LeadCreatedDate = r_LeadDetails.get("Created_Time").subString(0,4) + "-" + r_LeadDetails.get("Created_Time").subString(5,7) + "-" +...
set to GMT-07:00 with daylight savings in effect) v_ThisTimeZone = "Europe/London"; // // get details from lead record r_LeadDetails = zoho.crm.getRecordById("Leads",p_LeadID); // // get created time (no need to check if null?) v_LeadCreatedTime =...
the subform on the current form input..insert( ); // or insert the row(s) into the subform through the record variable r_LeadDetails = Leads[ID == 1234567890]; r_LeadDetails..insert( ); Events I have used this task which contradicts documentation: In a...