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
Arun Sarvan SamArun Sarvan Sam 

How to move changes from Sandbox to production - change set?

Hi friends,

How we can move the changes from sandbox to production for a particular trigger, class, object?

Please help me?
Ajay K DubediAjay K Dubedi
Hi Arun,

-Authorize a Deployment Connection
 Before you can receive change sets from a sandbox or other organization, authorize a deployment connection in the organization that receives the changes.
 1.Log into the organization that’ll receive inbound change sets. Usually this is the production organization associated with your sandbox.
 2.From Setup, enter Deployment in the Quick Find box, then select Deployment Settings.
 3.Click Edit next to the organization from which you want to receive outbound change sets. Usually this is your sandbox.
 4.Select Allow Inbound Changes and click Save.
-Create and Upload an Outbound Change Set
  Typically, you create an outbound change set in a sandbox organization and deploy it to production. But depending on your development lifecycle, you might choose to migrate changes in either direction between related organizations.
    1.From Setup, enter Outbound Change Sets in the Quick Find box, then select Outbound Change Sets.
    2.Click New.
    3.Enter a name for your change set and click Save.
    4.In the Change Set Components section, click Add.
    5.Choose the type of component (for example, Custom Object or Custom Field), the components you want to add, and click Add To Change Set.
-If you are experimenting with a test custom object and custom field, try adding just one of them to the change set first.
    1.Click View/Add Dependencies to see whether the components you’ve added to the change set are dependent on other customizations.
-In the case of the test custom object and custom field, the related component and page layout will both be listed.
    1.Select the dependent components you want to add and click Add To Change Set.
    2.Click Upload and choose your target organization.
    The outbound change set detail page displays a message and you get an email notification when the upload is complete.
    Now log into the target organization, where you can see the inbound change set.
-Validate an Inbound Change Set
    Validating a change set allows you to see the success or failure messages without committing the changes.
    1.From Setup, enter Inbound Change Sets in the Quick Find box, then select Inbound Change Sets.
    2.Click the name of a change set.
    3.Click Validate.
    4.After the validation completes, click View Results.
    If you receive any error messages, resolve them before you deploy. The most common causes of errors are dependent components that aren’t included in the change set and Apex test failures.
-Deploy an Inbound Change Set
    Deploying a change set commits the changes it contains to the target organization.
    1.From Setup, enter Inbound Change Sets in the Quick Find box, then select Inbound Change Sets.
    2.In the Change Sets Awaiting Deployment list, click the name of the change set you want to deploy.
    3.Click Deploy.
A change set is deployed in a single transaction. If the deployment is unable to complete for any reason, the entire transaction is rolled back. After a deployment completes successfully, all changes are committed to your org and the deployment can’t be rolled back.
 
I hope you find the above solution helpful. If it does, please mark as Best Answer to help others too.
Thanks,
Ajay Dubedi 
Arun Sarvan SamArun Sarvan Sam
Hi Ajay,

Thanks for the reply. It's very helpful