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
krishna casukhela 7krishna casukhela 7 

deployment in salesforce

Hi friends
I am very much new to salesforce deployment
Please advise on how to deploy , say sandbox to production or   any other.
a) what is the order of objects to deploy?
b) what tools for deployment
c) the actual process
d) How to deploy through eclipse?

Any help will be greatly appreciated....
Thanks
krishna
 
buggs sfdcbuggs sfdc
Hi Krishna, 

a) what is the order of objects to deploy?
-- There is no order to deploy any components which you made the change on the salesforce,i mean you can select the latest created object and deploy into another org or production.

b) what tools for deployment
--change sets most oftenly used.
--Force.com Migration Tool Considerations
--Requires a more developer-oriented skill set, with experience of Ant and scripting tools
--Requires storing the username and password on disk, which some security policies don’t permit
--https://trailhead.salesforce.com/en/alm_deployment/alm_tools.

c) the actual process
-- brief me more
d) How to deploy through eclipse?
--go through this link ,
http://salesforce.stackexchange.com/questions/645/deploy-to-different-environments-using-eclipse


 
MatsMats

If it's code we are talking about, I use eclipse (connected to the sandbox) to create/change my classes, triggers, pages and what not. Then I save to the sandbox, test the code. Then I select the code I want to deploy in the Package Explorer in eclipse (control-click to multi select) then right click on one of the selected classes/triggers/pages and select Deploy. This will run the relevant tests on the code being deployed and finally perform the deployment. Easy-peasy!

Larger, more complex changes would require a change set as explainded in the links above.