Assuming myform is required, the following 7 results were found.
m_Params.put("FieldToUpdate", "ValueToUpdateWith"); m_response = zoho.creator.updateRecord( "myAdminAccount", "myApp", "myForm", v_RecordID, m_Params, "myzohocreatorconnection"); Successful Response: { "criteria": "ID==1234567890123456789", "newvalues":...
for now, check the logic of this as this is known to work on the 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...
then loops through one of the subforms in each record: // select a bunch of creator records (ok all of them) l_AllRecords = myForm[ ID != 0 ]; // // loop through these for each r_Record in l_AllRecords { // set an if condition if(r_Record.Type ==...
on user input of the field to save this directly to the record; You would think the following would work: r_Details = myForm[ID == 1234567890123456789]; r_Details.Account = input.Account; But it will return the above error. You need to do the following:...
adding the record or updating the existing record if(!isnull(input.ID)) { //... code to update existing record r_Details = myForm[ID == input.ID]; r_Details.Account = input.Account.toLong(); } else { //... code to create new record r_NewRecord =...
} } } // // clear lookup clear myLookup; // // get list of all valid entries l_AllowedEntries = {}; for each v_AllowedID in myForm[ID != 0] { v_thisID = v_AllowedID.ID; l_AllowedEntries.add(v_thisID); } // // restore item in lookup input.myLookup =...
receive a list/form object are listed here) The argument name should be disabled/read-only, and for field name, select the myForm[Form Object]. (in our example Partners_Quote[FORM OBJECT]): "Save" that then click on "Done" to make sure it's all...