{"id":16996,"date":"2019-01-22T06:21:23","date_gmt":"2019-01-22T06:21:23","guid":{"rendered":"http:\/\/www.greytrix.com\/blogs\/sagex3\/?p=16996"},"modified":"2019-01-29T06:18:15","modified_gmt":"2019-01-29T06:18:15","slug":"how-to-copy-file-in-server-using-bat-process","status":"publish","type":"post","link":"https:\/\/www.greytrix.com\/blogs\/sagex3\/2019\/01\/22\/how-to-copy-file-in-server-using-bat-process\/","title":{"rendered":"How to Copy FIle in Server using .bat Process"},"content":{"rendered":"<p>In Sage Enterprise Management (Sage X3) we may need to copy the file from one folder to another folder. We will do it by using .bat process.<\/p>\n<p><strong><u>Syntax:<\/u><\/strong><\/p>\n<p>Subprog MoveFile(PATH1,PATH2)<\/p>\n<p>Value Char PATH1<\/p>\n<p>Value Char PATH2<\/p>\n<p>Local integer RETURN_VALUE<\/p>\n<p>RETURN_VALUE=Delfile(filpath(&#8220;TMP&#8221;,&#8221;&#8221;,&#8221;&#8221;,&#8221;&#8221;,&#8221;&#8221;,adxmac(0))+&#8217;\\Copy.bat&#8217;)<\/p>\n<p>Local Char WRET(250) (0..4)<\/p>\n<p>Openo filpath(&#8220;TMP&#8221;,&#8221;&#8221;,&#8221;&#8221;,&#8221;&#8221;,&#8221;&#8221;,adxmac(0))+&#8217;\\Copy.bat&#8217; Using [FACS]\n<p>WRET(0)=&#8221;copy &#8220;+PATH1+&#8221; &#8220;+PATH2<\/p>\n<p>Wrseq WRET(0) Using [FACS]\n<p>Openo Using [FACS]\n<p>System CHAINE=(filpath(&#8220;TMP&#8221;,&#8221;&#8221;,&#8221;&#8221;,&#8221;&#8221;,&#8221;&#8221;,adxmac(0))+&#8217;\\copy.bat&#8217;) ###To execute the bat file<\/p>\n<p>End<\/p>\n<p>Here,<\/p>\n<p>PATH1 = Source Location<\/p>\n<p>PATH2 = Destination Location<\/p>\n<p><span style=\"font-size: Medium;\"><strong>About Us<\/strong><\/span><br \/>\n<a href=\"https:\/\/www.greytrix.com\/\">Greytrix<\/a> \u2013 a globally recognized Premier Sage Gold Development Partner is a one-stop solution provider for Sage ERP and Sage CRM needs. Being recognized and rewarded for multi-man years of experience, we bring complete end-to-end assistance for your technical consultations, product customizations, data migration, system integrations, third-party add-on development and implementation expertise.<\/p>\n<p><a href=\"https:\/\/www.greytrix.com\/\">Greytrix<\/a>\u00a0caters to a wide range of Sage Enterprise Management (Sage X3) offerings \u2013 a Sage Business Cloud Solution. Our\u00a0unique GUMU&#x2122; integrations include <a href=\"https:\/\/www.greytrix.com\/product\/sage-crm\/gumu-sage-x3-integration\">Sage Enterprise Management (Sage X3) for Sage CRM<\/a>,\u00a0<a href=\"https:\/\/www.greytrix.com\/product\/sage-x3\/gumu-x3-salesforce-integration\">Salesforce.com<\/a> and\u00a0<a href=\"https:\/\/www.greytrix.com\/product\/magento-sage-integrations\/sage-x3-magento\">Magento eCommerce<\/a>\u00a0along with Implementation and Technical Support worldwide for <a href=\"https:\/\/www.greytrix.com\/africa\/product\/consulting\/implementation-planning\">Sage Enterprise Management (Sage X3)<\/a>. Currently we are <a href=\"https:\/\/www.greytrix.com\/africa\">Sage Enterprise Management Implementation Partner<\/a> in East Africa, Middles East, Australia, Asia.\u00a0We also offer best-in-class\u00a0<a href=\"https:\/\/www.greytrix.com\/product\/erp-development\/sage-x3\">Sage X3 customization and development services<\/a>,\u00a0integrated applications such as <a href=\"https:\/\/www.greytrix.com\/product\/sage-enterprise-management-integration-services\/pos-system\">POS<\/a> | <a href=\"https:\/\/www.greytrix.com\/product\/sage-enterprise-management-integration-services\/warehouse-management-system\">WMS<\/a> | <a href=\"https:\/\/www.greytrix.com\/product\/sage-enterprise-management-integration-services\/payment-gateway\">Payment Gateway<\/a> | <a href=\"https:\/\/www.greytrix.com\/product\/sage-enterprise-management-integration-services\/shipping-system\">Shipping System<\/a> | <a href=\"https:\/\/www.greytrix.com\/product\/sage-enterprise-management-integration-services\/business-intelligence\">Business Intelligence<\/a> | <a href=\"https:\/\/www.greytrix.com\/product\/sage-x3\/ecommerce-magento-integration\">eCommerce<\/a> and have developed add-ons such as <a href=\"https:\/\/www.greytrix.com\/product\/sage-enterprise-management-add-ons\/catch-weight\">Catch \u2013 Weight <\/a>\u00a0and <a href=\"https:\/\/www.greytrix.com\/product\/sage-enterprise-management-add-ons\/letter-of-credit\">Letter of Credit<\/a> for Sage Enterprise Management to Sage business partners, end users and Sage PSG worldwide.<\/p>\n<p>Greytrix is a recognized <a href=\"https:\/\/www.greytrix.com\/blogs\/sagecrm\/2017\/07\/26\/greytrix-on-boards-sage-global-rockstar-isv-program-with-gumu-for-sage-crm-sage-x3-solution\/\">Sage Rockstar ISV Partner<\/a> for GUMU&#x2122; Sage Enterprise Management \u2013 Sage CRM integration also listed on <a href=\"https:\/\/www.sage.com\/marketplace\/asb_ListingDetail?listingId=a1h24000007PC3aAAG\" target=\"_blank\" rel=\"noopener\">Sage Marketplace<\/a>; GUMU&#x2122; integration for Sage Enterprise Management \u2013 Salesforce is a 5-star app listed on <a href=\"https:\/\/appexchange.salesforce.com\/listingDetail?listingId=a0N30000000psM5EAI\" target=\"_blank\" rel=\"noopener\">Salesforce AppExchange<\/a>.<\/p>\n<p>For more information on Sage X3 Integration and Services, please contact us at\u00a0<a href=\"mailto:x3@greytrix.com\">x3@greytrix.com<\/a>. We will be glad to assist you.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In Sage Enterprise Management (Sage X3) we may need to copy the file from one folder to another folder. We will do it by using .bat process. Syntax: Subprog MoveFile(PATH1,PATH2) Value Char PATH1 Value Char PATH2 Local integer RETURN_VALUE RETURN_VALUE=Delfile(filpath(&#8220;TMP&#8221;,&#8221;&#8221;,&#8221;&#8221;,&#8221;&#8221;,&#8221;&#8221;,adxmac(0))+&#8217;\\Copy.bat&#8217;) Local Char WRET(250) (0..4) Openo filpath(&#8220;TMP&#8221;,&#8221;&#8221;,&#8221;&#8221;,&#8221;&#8221;,&#8221;&#8221;,adxmac(0))+&#8217;\\Copy.bat&#8217; Using [FACS] WRET(0)=&#8221;copy &#8220;+PATH1+&#8221; &#8220;+PATH2 Wrseq WRET(0) Using [FACS]\u2026 <span class=\"read-more\"><a href=\"https:\/\/www.greytrix.com\/blogs\/sagex3\/2019\/01\/22\/how-to-copy-file-in-server-using-bat-process\/\">Read More &raquo;<\/a><\/span><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[6],"tags":[2617,2618,1762,1766,1942,1945],"class_list":["post-16996","post","type-post","status-publish","format-standard","hentry","category-installation","tag-bat-process","tag-copy-file-in-server","tag-sage-enterprise-management","tag-sage-enterprise-management-blogs","tag-sage-x3-technical-assistance","tag-sage-x3-technical-blogs"],"_links":{"self":[{"href":"https:\/\/www.greytrix.com\/blogs\/sagex3\/wp-json\/wp\/v2\/posts\/16996","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.greytrix.com\/blogs\/sagex3\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.greytrix.com\/blogs\/sagex3\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.greytrix.com\/blogs\/sagex3\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.greytrix.com\/blogs\/sagex3\/wp-json\/wp\/v2\/comments?post=16996"}],"version-history":[{"count":2,"href":"https:\/\/www.greytrix.com\/blogs\/sagex3\/wp-json\/wp\/v2\/posts\/16996\/revisions"}],"predecessor-version":[{"id":17040,"href":"https:\/\/www.greytrix.com\/blogs\/sagex3\/wp-json\/wp\/v2\/posts\/16996\/revisions\/17040"}],"wp:attachment":[{"href":"https:\/\/www.greytrix.com\/blogs\/sagex3\/wp-json\/wp\/v2\/media?parent=16996"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.greytrix.com\/blogs\/sagex3\/wp-json\/wp\/v2\/categories?post=16996"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.greytrix.com\/blogs\/sagex3\/wp-json\/wp\/v2\/tags?post=16996"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}