You need to sign in to do that
Don't have an account?
Abdulhannan Patel 8
Space in the multi select picklist value via apex!
Can we have space in the Multi select picklist value? On UI, it works and creates the record with this field however, using apex, if I pass space in the multiselect picklist field, it shows bad value error. Is there any limitation of multi picklist field? Please help.
regards
All Answers
Account a = new Account();
a.Name = 'Test Account';
a.customers__c ='US Customers'
insert a;
On UI it takes this value and works fine. However, the apex gives an error.
We can have a space in the pick list value. Please double check exact value is same as 'US Customers' inside the Multi select pick list values.
Most probably it may differ.
regards
regards