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
Bernd NawrathBernd Nawrath 

Moving apex classes from sandbox to the real salesforce workbench

Hey guys, I was having a little trouble working on some apex classes because the only way I can is by working them in my sandbox, now I am wondering how to 'move' these files into the real workspace of the actual salesforce area. 

 
magicforce9magicforce9
Hi,

There are various ways you can deploy your APEX code to Production from Sandbox..The simplest of that is using Change Set. In your sandbox you'll need to create an Outbound Change Set and then add all the metadata you want to move(Apex Classes, Custom Fields...etc) and then upload that to your production org. And then in your production org - you'll need to look for that change set under Inbound Change set - for it to be deployed...You may refer to this video (https://www.youtube.com/watch?feature=player_detailpage&v=2qy8oV99iAM#t=206) for which shows a walkthru or just google "salesforce change sets" for more info.

Hope it helps,
Thanks