- //creating map
- productDetails = Map();
- //inserting details to map
- productDetails.put("Product Name",product_name);
- productDetails.put("Unit Price",unite_price);
- productDetails.put("Quantity in Stock",qty_stock);
- //sending to CRM
- crmResp = zoho.crm.create("Products",productDetails);
everything works fine and I get the correct response back, but no matter what I do I can not get line 6 to pass data. They are both decimal fields. I have even tried making a temp line in the CRM module to see if I could pass that number to another field and that worked without issue. it ONLY seems to be the Quantity in Stock that I can not update via creator...