{"id":887,"date":"2016-11-21T15:56:08","date_gmt":"2016-11-21T15:56:08","guid":{"rendered":"https:\/\/eshopsync.com\/?p=887"},"modified":"2025-10-14T09:36:11","modified_gmt":"2025-10-14T09:36:11","slug":"migration-packages-force-com-migration-tool","status":"publish","type":"post","link":"https:\/\/eshopsync.com\/migration-packages-force-com-migration-tool\/","title":{"rendered":"Migration of Packages Through Force.com Migration Tool"},"content":{"rendered":"<p>In this blog we will learn Migration of packages through Force.com migration tool, i.e. migrating a package from one org to another with the use of force.com migration tool.<\/p>\n<p>&nbsp;<\/p>\n<div class=\"panel panel-primary\">\n<div class=\"panel-heading\">\n<h3 class=\"panel-title\">Prerequisites<\/h3>\n<\/div>\n<\/div>\n<div class=\"panel-body\">\n<p>You should have following software installed in your system<\/p>\n<ul>\n<li>Java version 1.7.0_21<\/li>\n<li>Apache Ant version 1.7.0<\/li>\n<\/ul>\n<\/div>\n<div class=\"panel panel-primary\">\n<div class=\"panel-heading\">\n<h3 class=\"panel-title\">Steps to follow for force.com migration<\/h3>\n<\/div>\n<\/div>\n<div class=\"panel-body\">\n<p><strong>Step 1: Download Force.com migration tool<\/strong><\/p>\n<p>You can download the tool from the following link: <a href=\"https:\/\/gs0.salesforce.com\/dwnld\/SfdcAnt\/salesforce_ant_38.0.zip\" rel=\"nofollow\">Force.com migration tool<\/a><br \/>\nextract it in the root folder, so that you can access it through terminal easily.<\/p>\n<p><strong>Step 2: Open the terminal<\/strong><\/p>\n<p>1) Open the salesforce_ant_38.0 folder.<br \/>\n2) Open the sample folder.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone wp-image-890 size-full\" src=\"https:\/\/eshopsync.com\/wp-content\/uploads\/2016\/11\/Step1.png\" alt=\"step1\" width=\"718\" height=\"104\" srcset=\"https:\/\/eshopsync.com\/wp-content\/uploads\/2016\/11\/Step1.png 718w, https:\/\/eshopsync.com\/wp-content\/uploads\/2016\/11\/Step1-300x43.png 300w\" sizes=\"auto, (max-width: 718px) 100vw, 718px\" \/><\/p>\n<\/div>\n<div class=\"panel panel-primary\">\n<div class=\"panel-heading\">\n<h3 class=\"panel-title\">Retrieving the data of an org<\/h3>\n<\/div>\n<\/div>\n<div class=\"panel-body\">\n<p><strong>Step 1: Open The build.properties folder through editor<\/strong><\/p>\n<p>1) Go to salesforce_ant_38.0 &gt; sample &gt; build.properties. Open with editor.<br \/>\n2) Insert your user name and password of the org which contains the package you want to migrate.<\/p>\n<pre class=\"brush:xml\">&lt;!-- \r\n    \/**\r\n    * Webkul Software.\r\n    *\r\n    * @category Webkul\r\n    * @author Webkul\r\n    * @copyright Copyright \u00a9 2000-2016 salesforce.com, inc. All rights reserved.\r\n    *\/\r\n    --&gt;\r\n# Specify the login credentials for the desired Salesforce organization\r\nsf.username = &lt;Insert your Salesforce username here&gt;\r\nsf.password = &lt;Insert your Salesforce password here&gt;\/\/password+securitytoken\r\n<\/pre>\n<p><strong>Step 2: Open The build.xml folder through editor<\/strong><\/p>\n<p>1) Go to salesforce_ant_38.0 &gt; sample &gt; build.xml. Open with editor.<br \/>\n2) Insert your user name and password of the org which contains the package you want to migrate.<\/p>\n<pre class=\"brush:xml\">&lt;!-- \r\n    \/**\r\n    * Webkul Software.\r\n    *\r\n    * @category Webkul\r\n    * @author Webkul\r\n    * @copyright Copyright \u00a9 2000-2016 salesforce.com, inc. All rights reserved.\r\n    *\/\r\n    --&gt;\r\n\r\n&lt;condition property=\"sf.username\" value=\"&lt;Insert your Salesforce username here&gt;\"&gt; &lt;not&gt; &lt;isset property=\"sf.username\"\/&gt; &lt;\/not&gt; &lt;\/condition&gt;\r\n&lt;condition property=\"sf.password\" value=\"&lt;Insert your Salesforce Password+token here&gt;\"&gt; &lt;not&gt; &lt;isset property=\"sf.password\"\/&gt; &lt;\/not&gt; &lt;\/condition&gt;<\/pre>\n<p><strong>Step 3: Retrive the data of package from org to system<\/strong><\/p>\n<p>1) Create a folder of the package name you want to migrate. For ex- &#8220;mypackage&#8221;<br \/>\n2) Now, in build.xml you will find a target tag mention below. Apply the changes as per your need.<\/p>\n<pre class=\"brush:xml\">      &lt;!-- \r\n    \/**\r\n    * Webkul Software.\r\n    *\r\n    * @category Webkul\r\n    * @author Webkul\r\n    * @copyright Copyright \u00a9 2000-2016 salesforce.com, inc. All rights reserved.\r\n    *\/\r\n    --&gt;\r\n      &lt;target name=\"test\"&gt;\r\n      &lt;!-- Upload the contents of the \"mypkg\" package --&gt;\r\n      &lt;!--&lt;sf:deploy username=\"${sf.username}\" password=\"${sf.password}\" sessionId=\"${sf.sessionId}\" serverurl=\"${sf.serverurl}\" maxPoll=\"${sf.maxPoll}\" deployRoot=\"mypkg\" rollbackOnError=\"true\"\/&gt;\r\n      &lt;mkdir dir=\"retrieveOutput\"\/&gt;--&gt;&lt;!--Comment the sf:deploy tag while you are retrieving data--&gt;\r\n      &lt;!-- Retrieve the contents into another directory --&gt;\r\n      &lt;!--Mention the name of your folder--&gt;\r\n      &lt;sf:retrieve username=\"${sf.username}\" password=\"${sf.password}\" sessionId=\"${sf.sessionId}\" serverurl=\"${sf.serverurl}\" maxPoll=\"${sf.maxPoll}\" retrieveTarget=\"mypackage\" packageNames=\"\"\/&gt;\r\n&lt;\/target&gt;<\/pre>\n<p><strong>Step 4: Go to terminal. Write &#8220;ant&#8221; and press enter<\/strong><br \/>\n<img loading=\"lazy\" decoding=\"async\" class=\"alignnone wp-image-889 size-full\" src=\"https:\/\/eshopsync.com\/wp-content\/uploads\/2016\/11\/step2.png\" alt=\"step2\" width=\"728\" height=\"292\" srcset=\"https:\/\/eshopsync.com\/wp-content\/uploads\/2016\/11\/step2.png 728w, https:\/\/eshopsync.com\/wp-content\/uploads\/2016\/11\/step2-300x120.png 300w\" sizes=\"auto, (max-width: 728px) 100vw, 728px\" \/><\/p>\n<\/div>\n<p>&nbsp;<\/p>\n<div class=\"panel panel-primary\">\n<div class=\"panel-heading\">\n<h3 class=\"panel-title\">Deploy the data to an org<\/h3>\n<\/div>\n<\/div>\n<div class=\"panel-body\">\n<p><strong>Step 1: Open The build.properties folder through editor<\/strong><\/p>\n<p>1) Go to salesforce_ant_38.0 &gt; sample &gt; build.properties. Open with editor.<br \/>\n2) Insert your user name and password of the org in which you want to deploy the package.<\/p>\n<pre class=\"brush:xml\">&lt;!-- \r\n    \/**\r\n    * Webkul Software.\r\n    *\r\n    * @category Webkul\r\n    * @author Webkul\r\n    * @copyright Copyright \u00a9 2000-2016 salesforce.com, inc. All rights reserved.\r\n    *\/\r\n    --&gt;\r\n# Specify the login credentials for the desired Salesforce organization\r\nsf.username = &lt;Insert your Salesforce username here&gt;\r\nsf.password = &lt;Insert your Salesforce password here&gt;\/\/password+securitytoken\r\n<\/pre>\n<p><strong>Step 2: Open The build.xml folder through editor<\/strong><\/p>\n<p>1) Go to salesforce_ant_38.0 &gt; sample &gt; build.xml. Open with editor.<br \/>\n2) Insert your user name and password of the org in which you want to deploy the package.<\/p>\n<pre class=\"brush:xml\">&lt;!-- \r\n    \/**\r\n    * Webkul Software.\r\n    *\r\n    * @category Webkul\r\n    * @author Webkul\r\n    * @copyright Copyright \u00a9 2000-2016 salesforce.com, inc. All rights reserved.\r\n    *\/\r\n    --&gt;\r\n&lt;condition property=\"sf.username\" value=\"&lt;Insert your Salesforce username here&gt;\"&gt; &lt;not&gt; &lt;isset property=\"sf.username\"\/&gt; &lt;\/not&gt; &lt;\/condition&gt;\r\n&lt;condition property=\"sf.password\" value=\"&lt;Insert your Salesforce Password+token here&gt;\"&gt; &lt;not&gt; &lt;isset property=\"sf.password\"\/&gt; &lt;\/not&gt; &lt;\/condition&gt;<\/pre>\n<p><strong>Step 3: Remove the namespace from package.xml<\/strong><\/p>\n<p>1) Go to salesforce_ant_38.0 &gt; sample &gt; mypackage(The folder you mentioned in retrievetarget above) &gt; package.xml. Open with editor.<br \/>\n2) You will find description of the package.<\/p>\n<pre class=\"brush:xml\">&lt;!-- \r\n    \/**\r\n    * Webkul Software.\r\n    *\r\n    * @category Webkul\r\n    * @author Webkul\r\n    * @copyright Copyright \u00a9 2000-2016 salesforce.com, inc. All rights reserved.\r\n    *\/\r\n    --&gt;\r\n&lt;fullName&gt;&lt;Package Name&gt;&lt;\/fullName&gt;\r\n&lt;apiAccessLevel&gt;Unrestricted&lt;\/apiAccessLevel&gt;\r\n&lt;description&gt;&lt;Description&gt;&lt;\/description&gt;\r\n\r\n&lt;!--Remove the name space mentioned here, otherwise it will throw error--&gt;\r\n&lt;namespacePrefix&gt;&lt;namespace&gt;&lt;\/namespacePrefix&gt;<\/pre>\n<p><strong>Step 4: Deploy the data of package from system to org<\/strong><\/p>\n<p>1) Now, in build.xml you will find a target tag mention below. Apply the changes as per your need.<\/p>\n<pre class=\"brush:xml\">&lt;!-- \r\n    \/**\r\n    * Webkul Software.\r\n    *\r\n    * @category Webkul\r\n    * @author Webkul\r\n    * @copyright Copyright \u00a9 2000-2016 salesforce.com, inc. All rights reserved.\r\n    *\/\r\n    --&gt;\r\n&lt;target name=\"test\"&gt;\r\n      &lt;!-- Upload the contents of the \"mypackage\" package --&gt;\r\n      &lt;sf:deploy username=\"${sf.username}\" password=\"${sf.password}\" sessionId=\"${sf.sessionId}\" serverurl=\"${sf.serverurl}\" maxPoll=\"${sf.maxPoll}\" deployRoot=\"mypackage\" rollbackOnError=\"true\"\/&gt;\r\n      &lt;!comment the sf:retrieve tag while deploying--&gt;\r\n      &lt;!--&lt;mkdir dir=\"retrieveOutput\"\/&gt;--&gt;\r\n      &lt;!-- Retrieve the contents into another directory --&gt;\r\n      &lt;!--&lt;sf:retrieve username=\"${sf.username}\" password=\"${sf.password}\" sessionId=\"${sf.sessionId}\" serverurl=\"${sf.serverurl}\" maxPoll=\"${sf.maxPoll}\" retrieveTarget=\"retrieveOutput\" packageNames=\"MyPkg\"\/&gt;--&gt;\r\n&lt;\/target&gt;<\/pre>\n<p><strong>Step 5: Go to terminal. Write &#8220;ant&#8221; and press enter<\/strong><\/p>\n<\/div>\n<p>&nbsp;<\/p>\n<div class=\"panel panel-primary\">\n<div class=\"panel-heading\">\n<h3 class=\"panel-title\"><i class=\"fa fa-user\"><\/i>Support<\/h3>\n<\/div>\n<\/div>\n<div class=\"panel-body\">\n<p>That\u2019s all for Migration of packages through Force.com migration tool, still have any issue feel free to add a ticket and let us know your views to make the code better <strong><a href=\"https:\/\/webkul.uvdesk.com\/en\/customer\/create-ticket\/\" rel=\"nofollow\"> https:\/\/webkul.uvdesk.com\/en\/customer\/create-ticket\/<\/a><\/strong><\/p>\n<\/div>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this blog we will learn Migration of packages through Force.com migration tool, i.e. migrating a package from one org to another with the use of force.com migration tool. &nbsp;<a href=\"https:\/\/eshopsync.com\/migration-packages-force-com-migration-tool\/\"> &#8230;<\/a><\/p>\n","protected":false},"author":6,"featured_media":779,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[15],"tags":[111,346],"class_list":["post-887","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-salesforce","tag-force-com-migration","tag-migration-tool"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Migration of Packages Through Force.com Migration Tool<\/title>\n<meta name=\"description\" content=\"We will learn Migration of packages through Force.com migration tool, i.e. migrating a package from one org to another.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/eshopsync.com\/migration-packages-force-com-migration-tool\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Migration of Packages Through Force.com Migration Tool\" \/>\n<meta property=\"og:description\" content=\"We will learn Migration of packages through Force.com migration tool, i.e. migrating a package from one org to another.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/eshopsync.com\/migration-packages-force-com-migration-tool\/\" \/>\n<meta property=\"og:site_name\" content=\"eShopSync\" \/>\n<meta property=\"article:published_time\" content=\"2016-11-21T15:56:08+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-10-14T09:36:11+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/eshopsync.com\/wp-content\/uploads\/2016\/09\/Article-1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"945\" \/>\n\t<meta property=\"og:image:height\" content=\"356\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Aakanksha Singh\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Aakanksha Singh\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/eshopsync.com\\\/migration-packages-force-com-migration-tool\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/eshopsync.com\\\/migration-packages-force-com-migration-tool\\\/\"},\"author\":{\"name\":\"Aakanksha Singh\",\"@id\":\"https:\\\/\\\/eshopsync.com\\\/#\\\/schema\\\/person\\\/0c0abdfe9996c433a577308c6e67cd39\"},\"headline\":\"Migration of Packages Through Force.com Migration Tool\",\"datePublished\":\"2016-11-21T15:56:08+00:00\",\"dateModified\":\"2025-10-14T09:36:11+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/eshopsync.com\\\/migration-packages-force-com-migration-tool\\\/\"},\"wordCount\":439,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/eshopsync.com\\\/migration-packages-force-com-migration-tool\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/eshopsync.com\\\/wp-content\\\/uploads\\\/2016\\\/09\\\/Article-1.png\",\"keywords\":[\"Force.com Migration\",\"Migration Tool\"],\"articleSection\":[\"Salesforce\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/eshopsync.com\\\/migration-packages-force-com-migration-tool\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/eshopsync.com\\\/migration-packages-force-com-migration-tool\\\/\",\"url\":\"https:\\\/\\\/eshopsync.com\\\/migration-packages-force-com-migration-tool\\\/\",\"name\":\"Migration of Packages Through Force.com Migration Tool\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/eshopsync.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/eshopsync.com\\\/migration-packages-force-com-migration-tool\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/eshopsync.com\\\/migration-packages-force-com-migration-tool\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/eshopsync.com\\\/wp-content\\\/uploads\\\/2016\\\/09\\\/Article-1.png\",\"datePublished\":\"2016-11-21T15:56:08+00:00\",\"dateModified\":\"2025-10-14T09:36:11+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/eshopsync.com\\\/#\\\/schema\\\/person\\\/0c0abdfe9996c433a577308c6e67cd39\"},\"description\":\"We will learn Migration of packages through Force.com migration tool, i.e. migrating a package from one org to another.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/eshopsync.com\\\/migration-packages-force-com-migration-tool\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/eshopsync.com\\\/migration-packages-force-com-migration-tool\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/eshopsync.com\\\/migration-packages-force-com-migration-tool\\\/#primaryimage\",\"url\":\"https:\\\/\\\/eshopsync.com\\\/wp-content\\\/uploads\\\/2016\\\/09\\\/Article-1.png\",\"contentUrl\":\"https:\\\/\\\/eshopsync.com\\\/wp-content\\\/uploads\\\/2016\\\/09\\\/Article-1.png\",\"width\":945,\"height\":356},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/eshopsync.com\\\/migration-packages-force-com-migration-tool\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/eshopsync.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Migration of Packages Through Force.com Migration Tool\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/eshopsync.com\\\/#website\",\"url\":\"https:\\\/\\\/eshopsync.com\\\/\",\"name\":\"eShopSync\",\"description\":\"Salesforce, SAP, Pardot Integration For E-Commerce Store\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/eshopsync.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/eshopsync.com\\\/#\\\/schema\\\/person\\\/0c0abdfe9996c433a577308c6e67cd39\",\"name\":\"Aakanksha Singh\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/eef6d7ed23fc4ad8f12c94d6d6d30ec2ebbb9bedbf9d8a9dc8626a3a171fa3fa?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/eef6d7ed23fc4ad8f12c94d6d6d30ec2ebbb9bedbf9d8a9dc8626a3a171fa3fa?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/eef6d7ed23fc4ad8f12c94d6d6d30ec2ebbb9bedbf9d8a9dc8626a3a171fa3fa?s=96&d=mm&r=g\",\"caption\":\"Aakanksha Singh\"},\"url\":\"https:\\\/\\\/eshopsync.com\\\/author\\\/aakanksha-singh391\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Migration of Packages Through Force.com Migration Tool","description":"We will learn Migration of packages through Force.com migration tool, i.e. migrating a package from one org to another.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/eshopsync.com\/migration-packages-force-com-migration-tool\/","og_locale":"en_US","og_type":"article","og_title":"Migration of Packages Through Force.com Migration Tool","og_description":"We will learn Migration of packages through Force.com migration tool, i.e. migrating a package from one org to another.","og_url":"https:\/\/eshopsync.com\/migration-packages-force-com-migration-tool\/","og_site_name":"eShopSync","article_published_time":"2016-11-21T15:56:08+00:00","article_modified_time":"2025-10-14T09:36:11+00:00","og_image":[{"width":945,"height":356,"url":"https:\/\/eshopsync.com\/wp-content\/uploads\/2016\/09\/Article-1.png","type":"image\/png"}],"author":"Aakanksha Singh","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Aakanksha Singh","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/eshopsync.com\/migration-packages-force-com-migration-tool\/#article","isPartOf":{"@id":"https:\/\/eshopsync.com\/migration-packages-force-com-migration-tool\/"},"author":{"name":"Aakanksha Singh","@id":"https:\/\/eshopsync.com\/#\/schema\/person\/0c0abdfe9996c433a577308c6e67cd39"},"headline":"Migration of Packages Through Force.com Migration Tool","datePublished":"2016-11-21T15:56:08+00:00","dateModified":"2025-10-14T09:36:11+00:00","mainEntityOfPage":{"@id":"https:\/\/eshopsync.com\/migration-packages-force-com-migration-tool\/"},"wordCount":439,"commentCount":0,"image":{"@id":"https:\/\/eshopsync.com\/migration-packages-force-com-migration-tool\/#primaryimage"},"thumbnailUrl":"https:\/\/eshopsync.com\/wp-content\/uploads\/2016\/09\/Article-1.png","keywords":["Force.com Migration","Migration Tool"],"articleSection":["Salesforce"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/eshopsync.com\/migration-packages-force-com-migration-tool\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/eshopsync.com\/migration-packages-force-com-migration-tool\/","url":"https:\/\/eshopsync.com\/migration-packages-force-com-migration-tool\/","name":"Migration of Packages Through Force.com Migration Tool","isPartOf":{"@id":"https:\/\/eshopsync.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/eshopsync.com\/migration-packages-force-com-migration-tool\/#primaryimage"},"image":{"@id":"https:\/\/eshopsync.com\/migration-packages-force-com-migration-tool\/#primaryimage"},"thumbnailUrl":"https:\/\/eshopsync.com\/wp-content\/uploads\/2016\/09\/Article-1.png","datePublished":"2016-11-21T15:56:08+00:00","dateModified":"2025-10-14T09:36:11+00:00","author":{"@id":"https:\/\/eshopsync.com\/#\/schema\/person\/0c0abdfe9996c433a577308c6e67cd39"},"description":"We will learn Migration of packages through Force.com migration tool, i.e. migrating a package from one org to another.","breadcrumb":{"@id":"https:\/\/eshopsync.com\/migration-packages-force-com-migration-tool\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/eshopsync.com\/migration-packages-force-com-migration-tool\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/eshopsync.com\/migration-packages-force-com-migration-tool\/#primaryimage","url":"https:\/\/eshopsync.com\/wp-content\/uploads\/2016\/09\/Article-1.png","contentUrl":"https:\/\/eshopsync.com\/wp-content\/uploads\/2016\/09\/Article-1.png","width":945,"height":356},{"@type":"BreadcrumbList","@id":"https:\/\/eshopsync.com\/migration-packages-force-com-migration-tool\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/eshopsync.com\/"},{"@type":"ListItem","position":2,"name":"Migration of Packages Through Force.com Migration Tool"}]},{"@type":"WebSite","@id":"https:\/\/eshopsync.com\/#website","url":"https:\/\/eshopsync.com\/","name":"eShopSync","description":"Salesforce, SAP, Pardot Integration For E-Commerce Store","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/eshopsync.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/eshopsync.com\/#\/schema\/person\/0c0abdfe9996c433a577308c6e67cd39","name":"Aakanksha Singh","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/eef6d7ed23fc4ad8f12c94d6d6d30ec2ebbb9bedbf9d8a9dc8626a3a171fa3fa?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/eef6d7ed23fc4ad8f12c94d6d6d30ec2ebbb9bedbf9d8a9dc8626a3a171fa3fa?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/eef6d7ed23fc4ad8f12c94d6d6d30ec2ebbb9bedbf9d8a9dc8626a3a171fa3fa?s=96&d=mm&r=g","caption":"Aakanksha Singh"},"url":"https:\/\/eshopsync.com\/author\/aakanksha-singh391\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/eshopsync.com\/wp-json\/wp\/v2\/posts\/887","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/eshopsync.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/eshopsync.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/eshopsync.com\/wp-json\/wp\/v2\/users\/6"}],"replies":[{"embeddable":true,"href":"https:\/\/eshopsync.com\/wp-json\/wp\/v2\/comments?post=887"}],"version-history":[{"count":5,"href":"https:\/\/eshopsync.com\/wp-json\/wp\/v2\/posts\/887\/revisions"}],"predecessor-version":[{"id":13609,"href":"https:\/\/eshopsync.com\/wp-json\/wp\/v2\/posts\/887\/revisions\/13609"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/eshopsync.com\/wp-json\/wp\/v2\/media\/779"}],"wp:attachment":[{"href":"https:\/\/eshopsync.com\/wp-json\/wp\/v2\/media?parent=887"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/eshopsync.com\/wp-json\/wp\/v2\/categories?post=887"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/eshopsync.com\/wp-json\/wp\/v2\/tags?post=887"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}