Assuming recordid is required, the following 9 results were found.
Function: String fn_PushPerformanceToAnalytics(int p_RecordID) Label: Fn - Push Performance Data to Analytics Trigger: Workflow when an objective is created or edited. Purpose: Pushes the data and columns we need to Zoho Analytics to produce an...
for my widgets), I have to write it as such: SELECT 'CRM Accounts' AS "DataSource", date(t1."ModifiedTime") AS "Date", t1."RecordID" AS "Record ID", t1."RecordName" AS "Record Name", t1."RecordOwner" AS "Record Owner", img."ZohoAnalytics Image URL" AS...
CRM record: // assuming I have a creator form called "myForm" // that the ID of the record is the value of the variable "myRecordID" // that a subform exists in the form called "Attachments" // that a field exists in the subform called "myUpload" //...
and current file name: // // get original document file (optional) - you need your own record ID here v_ZC_DocumentRecordID = 1234567890123456789; c_ExistingDocument = Document[ID == v_ZC_DocumentRecordID]; info c_ExistingDocument.Document_File; Upload...
dataMap is the map() to post. connectionLinkName is the connection link obtained previously (as a string). For example: v_RecordID = "1234567890123456789".toLong(); m_Params = Map(); m_Params.put("FieldToUpdate", "ValueToUpdateWith"); m_response =...
for each r_Record in l_Records { if(!isnull(r_Record.get("id"))) { // re-init m_Update = Map(); v_RecordID = r_Record.get("id"); v_CountFound = v_CountFound + 1; // // other field update if(!isnull(r_Record.get("Account_Name"))) { // do other stuff...
a search API or a COQL query (see below). // ****************** CODE USING SEARCHRECORDS **************** // // init v_RecordID = 1234567890123456789; // // loop through 5 pages of 200 records = 1000 records l_Pages = [1,2,3,4,5]; // // set search...
]; or (untested) m_Trigger = Map(); m_Trigger.put("trigger",[]); r_Update = zoho.crm.updateRecord("Module",p_RecordID,m_UpdateRecord,m_Trigger); From the documentation: The trigger input can be workflow, approval, or blueprint. If trigger is not...
v_EntityModule = r_Data.Entity; // get the record details ZOHO.CRM.API.getRecord({ Entity: v_EntityModule, RecordID: v_EntityID }) .then(function(response) { console.log("Record data:"); console.log(response); }).catch(function(error) {...