Creater zoho.crm.create problem

Creater zoho.crm.create problem

I am trying to send details to CRM from Creator using deluge "on success" script.  This is going to the "Deals" module of CRM.
  1. //creating map
  2.       productDetails = Map();
  3. //inserting details to map
  4.       productDetails.put("Product Name",product_name);
  5.       productDetails.put("Unit Price",unite_price);
  6.       productDetails.put("Quantity in Stock",qty_stock);
  7. //sending to CRM
  8.       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...