Transfer data from one module to another
Hi! I'm trying to trandfer data from one field, in one module, to another field in another module. I created an automation to create a new record in the second module when the records are finished in the first module, and the data of some fields in the firts one have to be duplicated in another fields in the second one. Only for test, i created the function below:
adm = zoho.crm.getRecordById("Administrativo",tid);
mp = Map();
mp.put("TESTE_TRANSPORTE","TESTE!");
But the data are not being transfered. What can be wrong in this case?