Why can't I use Proper or Upper Case on the Billing Province or Billing Code field?

Why can't I use Proper or Upper Case on the Billing Province or Billing Code field?


All,

Can anyone tell me what I'm doing wrong with the following function? All my other fields change their case properly when I call the workflow for the custom function. However I can't get the Province field or Billing Code field to work. I have al lthe agruments declared properly and I've checked the spelling multiple times. Is it a Zoho glitch?



  1. CFLAN = proper(AccountName);
  2. CFLBC = proper(BillingCity);
  3. CFLBP = lower(BillingProvince);
  4. CFLBS = proper(BillingStreet);
  5. CFLBS2 = proper(BillingStreet2);
  6. CREP = Upper(RepCode);
  7. CBC = Upper(BillingCode);
  8. mp = Map();
  9. mp.put("Account_Name",CFLAN);
  10. mp.put("Billing_City",CFLBC);
  11. mp.put("Billing_Province",CFLBP);
  12. mp.put("Billing_Street",CFLBS);
  13. mp.put("Billing_Street_2",CFLBS2);
  14. mp.put("Billing_Code)",CBC);
  15. mp.put("Rep_Code",CREP);
  16. zoho.crm.updateRecord("Accounts",AccountID,mp);