{"id":64927,"date":"2016-11-18T13:05:12","date_gmt":"2016-11-18T13:05:12","guid":{"rendered":"http:\/\/webkul.com\/blog\/?p=64927"},"modified":"2016-12-28T08:40:31","modified_gmt":"2016-12-28T08:40:31","slug":"migration-of-packages-through-force-com-migration-tool","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/migration-of-packages-through-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<div class=\"panel panel-primary\">\n<div class=\"panel-heading\">\n<h3 class=\"panel-title\">Prerequisites<\/h3>\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>\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 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\">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 decoding=\"async\" class=\"alignnone wp-image-64929 size-full\" src=\"http:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/11\/Step1.png\" alt=\"step1\" width=\"718\" height=\"104\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/11\/Step1.png 718w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/11\/Step1-250x36.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/11\/Step1-300x43.png 300w\" sizes=\"(max-width: 718px) 100vw, 718px\" loading=\"lazy\" \/><\/p>\n<\/div>\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 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\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<\/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;\r\n<\/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\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}\" 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}\" serverurl=\"${sf.serverurl}\" maxPoll=\"${sf.maxPoll}\" retrieveTarget=\"mypackage\" packageNames=\"Package Name\"\/&gt;\r\n&lt;\/target&gt;\r\n<\/pre>\n<p><strong>Step 4: Go to terminal. Write &#8220;ant&#8221; and press enter<\/strong><br \/>\n<img decoding=\"async\" class=\"alignnone wp-image-65252 size-full\" src=\"http:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/11\/step2.png\" alt=\"step2\" width=\"728\" height=\"292\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/11\/step2.png 728w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/11\/step2-250x100.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/11\/step2-300x120.png 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" loading=\"lazy\" \/><\/p>\n<\/div>\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 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\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<\/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\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\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\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<\/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 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 <a href=\"https:\/\/webkul.uvdesk.com\/en\/customer\/create-ticket\/\"> https:\/\/webkul.uvdesk.com\/en\/customer\/create-ticket\/<\/a><\/p>\n<\/div>\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. Prerequisites You should have following software installed in your system Java version 1.7.0_21 Apache Ant version 1.7.0 Steps to follow for force.com migration Step 1: Download <a href=\"https:\/\/webkul.com\/blog\/migration-of-packages-through-force-com-migration-tool\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":104,"featured_media":62521,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1887],"tags":[4024],"class_list":["post-64927","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-salesforce","tag-force-com-migration"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Migration of packages through Force.com migration<\/title>\n<meta name=\"description\" content=\"In this blog 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:\/\/webkul.com\/blog\/migration-of-packages-through-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\" \/>\n<meta property=\"og:description\" content=\"In this blog 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:\/\/webkul.com\/blog\/migration-of-packages-through-force-com-migration-tool\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:published_time\" content=\"2016-11-18T13:05:12+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2016-12-28T08:40:31+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/10\/Article-1-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:creator\" content=\"@webkul\" \/>\n<meta name=\"twitter:site\" content=\"@webkul\" \/>\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=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/migration-of-packages-through-force-com-migration-tool\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/migration-of-packages-through-force-com-migration-tool\/\"},\"author\":{\"name\":\"Aakanksha Singh\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/7d54984c6524404eb2ba261ace62da80\"},\"headline\":\"Migration of packages through Force.com migration tool\",\"datePublished\":\"2016-11-18T13:05:12+00:00\",\"dateModified\":\"2016-12-28T08:40:31+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/migration-of-packages-through-force-com-migration-tool\/\"},\"wordCount\":438,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/migration-of-packages-through-force-com-migration-tool\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/10\/Article-1-1.png\",\"keywords\":[\"Force.com Migration\"],\"articleSection\":[\"Salesforce\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/migration-of-packages-through-force-com-migration-tool\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/migration-of-packages-through-force-com-migration-tool\/\",\"url\":\"https:\/\/webkul.com\/blog\/migration-of-packages-through-force-com-migration-tool\/\",\"name\":\"Migration of packages through Force.com migration\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/migration-of-packages-through-force-com-migration-tool\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/migration-of-packages-through-force-com-migration-tool\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/10\/Article-1-1.png\",\"datePublished\":\"2016-11-18T13:05:12+00:00\",\"dateModified\":\"2016-12-28T08:40:31+00:00\",\"description\":\"In this blog we will learn Migration of packages through Force.com migration tool, i.e. migrating a package from one org to another.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/migration-of-packages-through-force-com-migration-tool\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/migration-of-packages-through-force-com-migration-tool\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/migration-of-packages-through-force-com-migration-tool\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/10\/Article-1-1.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/10\/Article-1-1.png\",\"width\":945,\"height\":356},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/migration-of-packages-through-force-com-migration-tool\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Migration of packages through Force.com migration tool\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webkul.com\/blog\/#website\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"name\":\"Webkul Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webkul.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webkul.com\/blog\/#organization\",\"name\":\"WebKul Software Private Limited\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"width\":380,\"height\":380,\"caption\":\"WebKul Software Private Limited\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webkul\/\",\"https:\/\/x.com\/webkul\",\"https:\/\/www.instagram.com\/webkul\/\",\"https:\/\/www.linkedin.com\/company\/webkul\",\"https:\/\/www.youtube.com\/user\/webkul\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/7d54984c6524404eb2ba261ace62da80\",\"name\":\"Aakanksha Singh\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/eef6d7ed23fc4ad8f12c94d6d6d30ec2ebbb9bedbf9d8a9dc8626a3a171fa3fa?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/eef6d7ed23fc4ad8f12c94d6d6d30ec2ebbb9bedbf9d8a9dc8626a3a171fa3fa?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g\",\"caption\":\"Aakanksha Singh\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/aakanksha-singh391\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Migration of packages through Force.com migration","description":"In this blog 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:\/\/webkul.com\/blog\/migration-of-packages-through-force-com-migration-tool\/","og_locale":"en_US","og_type":"article","og_title":"Migration of packages through Force.com migration","og_description":"In this blog we will learn Migration of packages through Force.com migration tool, i.e. migrating a package from one org to another.","og_url":"https:\/\/webkul.com\/blog\/migration-of-packages-through-force-com-migration-tool\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2016-11-18T13:05:12+00:00","article_modified_time":"2016-12-28T08:40:31+00:00","og_image":[{"width":945,"height":356,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/10\/Article-1-1.png","type":"image\/png"}],"author":"Aakanksha Singh","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Aakanksha Singh","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/migration-of-packages-through-force-com-migration-tool\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/migration-of-packages-through-force-com-migration-tool\/"},"author":{"name":"Aakanksha Singh","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/7d54984c6524404eb2ba261ace62da80"},"headline":"Migration of packages through Force.com migration tool","datePublished":"2016-11-18T13:05:12+00:00","dateModified":"2016-12-28T08:40:31+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/migration-of-packages-through-force-com-migration-tool\/"},"wordCount":438,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/migration-of-packages-through-force-com-migration-tool\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/10\/Article-1-1.png","keywords":["Force.com Migration"],"articleSection":["Salesforce"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/migration-of-packages-through-force-com-migration-tool\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/migration-of-packages-through-force-com-migration-tool\/","url":"https:\/\/webkul.com\/blog\/migration-of-packages-through-force-com-migration-tool\/","name":"Migration of packages through Force.com migration","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/migration-of-packages-through-force-com-migration-tool\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/migration-of-packages-through-force-com-migration-tool\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/10\/Article-1-1.png","datePublished":"2016-11-18T13:05:12+00:00","dateModified":"2016-12-28T08:40:31+00:00","description":"In this blog we will learn Migration of packages through Force.com migration tool, i.e. migrating a package from one org to another.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/migration-of-packages-through-force-com-migration-tool\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/migration-of-packages-through-force-com-migration-tool\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/migration-of-packages-through-force-com-migration-tool\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/10\/Article-1-1.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/10\/Article-1-1.png","width":945,"height":356},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/migration-of-packages-through-force-com-migration-tool\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Migration of packages through Force.com migration tool"}]},{"@type":"WebSite","@id":"https:\/\/webkul.com\/blog\/#website","url":"https:\/\/webkul.com\/blog\/","name":"Webkul Blog","description":"","publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webkul.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webkul.com\/blog\/#organization","name":"WebKul Software Private Limited","url":"https:\/\/webkul.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","width":380,"height":380,"caption":"WebKul Software Private Limited"},"image":{"@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webkul\/","https:\/\/x.com\/webkul","https:\/\/www.instagram.com\/webkul\/","https:\/\/www.linkedin.com\/company\/webkul","https:\/\/www.youtube.com\/user\/webkul\/"]},{"@type":"Person","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/7d54984c6524404eb2ba261ace62da80","name":"Aakanksha Singh","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/eef6d7ed23fc4ad8f12c94d6d6d30ec2ebbb9bedbf9d8a9dc8626a3a171fa3fa?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/eef6d7ed23fc4ad8f12c94d6d6d30ec2ebbb9bedbf9d8a9dc8626a3a171fa3fa?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g","caption":"Aakanksha Singh"},"url":"https:\/\/webkul.com\/blog\/author\/aakanksha-singh391\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/64927","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/users\/104"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=64927"}],"version-history":[{"count":9,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/64927\/revisions"}],"predecessor-version":[{"id":69629,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/64927\/revisions\/69629"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media\/62521"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=64927"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=64927"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=64927"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}