Creating a record in CRM Pick List

Creating a record in CRM Pick List

I am trying to create a record form a Drop down form into a pick list, it seems that all the other fields are updating just fine.  But not able to put data into a picklist. 

  1. //create the CRM vs Creator fields map to push data to the CRM module.
  2. myFieldMap = Map();
  3. //add values to the map. CRM fields first and then Creator fields ( without the quotes ). Creator field’s deluge name is used here. 
  4. myFieldMap = Map();
  5. myFieldMap.put("Guest Name",input.Guest_Name);
  6. myFieldMap.put("Guest 2 Name",input.Guest_2_Name);
  7. myFieldMap.put("Tour Vendor",input.Tour_Vendor);
  8. myFieldMap.put("Email",input.Email);
  9. myFieldMap.put("Guest Phone",input.Phone_Number);
  10. myFieldMap.put("Tour Type",input.Tour_Type);
  11. myFieldMap.put("Scheduled Tour Date",input.Scheduled_Tour_Date);
  12. myFieldMap.put("Schedule Tour Time",input.Scheduled_Tour_Time);
  13. myFieldMap.put("Promised Gifts",input.Promised_Gifts);
  14. myFieldMap.put("Gift Notes",input.Gift_Notes);
  15. myFieldMap.put("Deposit",input.Deposit);
  16. myFieldMap.put("Refundable Deposit",input.Refundable_Deposit);
  17. myFieldMap.put("Refund Amount",input.Refund_Amount);
  18. //function to push data to CRM
  19. response = zoho.crm.create("CustomModule2",myFieldMap);