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

Select Options available through API
If we have a field that is a drop down in Salesforce is it possible to retrieve a list fo all of the available values through the API?
function readOnly(count){ }
You need to sign in to do that
Don't have an account?
If we have a field that is a drop down in Salesforce is it possible to retrieve a list fo all of the available values through the API?
Yes. In Salesforce, a select field is called a Picklist. So when looking for help on that, you should search with that term. You can use describeObject to retrieve an array of the values. Here's an example in the documentation:
http://www.salesforce.com/us/developer/docs/api/Content/sforce_api_calls_describesobject.htm
-paul