You need to sign in to do that
Don't have an account?

Select multiple pick list values via the Force API
HI,
I need to be able to select pick list values and create an object with these pick list value via th e API in my flex component.
For example:
var myObj:SObject("MyCustomObj__c"); myObj.MyPickList__c = {Option1, Option2, Option6}; apex.create(myObj);
Any ideas as to in what format I need to pass my pick list value to the pick list field in my SObject.
Any help will be appriciated.
Thanks.
Semi-colon seperated list will work
'; '
All Answers
Semi-colon seperated list will work
'; '
Thanks this did the trick.