function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
SFDC Admin12SFDC Admin12 

changesets

Hi Team,

Can we deploy a picklist values using change sets.
And can u let me know what happen to old values which are in InActive.

Thanks!
Best Answer chosen by SFDC Admin12
AbhishekAbhishek (Salesforce Developers) 
Hi,

You can use a Change Set to deploy Custom Picklists however it will not pick up custom values in the standard picklists such as Account. Industry, Case.The reason, etc.

To deploy the custom values in standard picklists you have to use a method of deployment that uses the Metadata API directly, e.g. Salesforce IDE, Salesforce Deployment tool, or workbench.

These will need to have the standard picklist field included in the 'custom-fields' section of the package.xml and then it will deploy them.

This is a known issue and there is an Idea community topic for it.

https://success.salesforce.com/ideaView?id=08730000000HJ3kAAG

Thanks.