I have the following map working fine.
creandoaFact=map();
creandoaFact.put("Contenedor",input.cont);
creandoaFact.put("Booking",input.Booking);
creandoaFact.put("Cliente",input.Cliente);
creandoaFact.put("Ref Cliente",input.RefCliente);
creandoaFact.put("Tipo","GATE-IN");
res = zoho.crm.create("CustomModule12",creandoaFact);
I have a Number field too
I need to create, using this map, the number of records equal to the number field.
Is this possible?
PVU