Deploy from one salesforce org to another using AutoRABIT
1. Go to Deployment. 2. Select New deployment. 3. Enter Deployment Details. Metadata Types, you can choose to deploy either the entire Org or Full Profiles or Permission sets. a. ....
1. Go to Deployment. 2. Select New deployment. 3. Enter Deployment Details. Metadata Types, you can choose to deploy either the entire Org or Full Profiles or Permission sets. a. ....
1. Go to clickdeploy.io and sign in with your developer edition or production login. 2. Go to Organizations and click Add Organization to add source and target organizations. 3. Go ....
Use CustomObject and CustomObjectTranslation to retrieve translations using Metadata API Sample Package.xml: <Package xmlns="http://soap.sforce.com/2006/04/metadata"> <types> <members>Account</members> <members>AccountContactRole</members> <members>Activity</members> <members>Asset</members> <members>AssistantProgress</members> <members>Campaign</members> <members>CampaignMember</members> <members>Case</members> <members>CaseContactRole</members> <members>CaseMilestone</members> <members>Contact</members> <members>ContentVersion</members> <members>Contract</members> <members>ContractContactRole</members> <members>ContractLineItem</members> ....
Use CustomObject as the name for deploying Platform Events using Apache ANT tool in Salesforce Sample package.xml: <types> <members>EventName__e</members> <name>CustomObject</name> </types>
Global Quick Actions and Object Specific Quick Actions can be deployed via ANT tool in Salesforce. Sample Package.xml: <?xml version="1.0" encoding="UTF-8"?> <Package xmlns="http://soap.sforce.com/2006/04/metadata"> <types> <!--Global Quick Action --> <members>LogACall</members> <!--Object ....
To deploy Compact Layout in Salesforce using ANT tool, include the Compact Layout, Record Type and the Profile. Use the following sample package.xml to retrieve and deploy Salesforce Compact Layouts. ....
Select Component Type as Flow Definition to deploy Process Builder using Changeset. Cheers!!!
Sample Package.xml: <target name="quickdeployprod"> <sf:deployRecentValidation username="${sf.username}" password="${sf.password}" serverurl="${sf.sandboxurl}" recentValidationId = "recently validated id" deployroot="Retrieve"/> </target> Cheers!!!
Sample Package.xml: <target name="validateprod"> <sf:deploy username="${sf.fusername}" password="${sf.password}" serverurl="${sf.sandboxurl}" checkOnly=true deployroot="Retrieve"/> </target> Cheers!!!
Sample Package.xml: <?xml version="1.0" encoding="UTF-8"?> <Package xmlns=""> <types> <members>*</members> <name>Letterhead</name> </types> <version>31.0</version> </Package> Cheers!!!