<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Moving application server files to another folder in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/moving-application-server-files-to-another-folder/m-p/5801471#M1311741</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   Could anyone please tell me how to move the application server files from one folder to&lt;/P&gt;&lt;P&gt;   another through a program?&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sudeep&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 26 Jun 2009 09:00:44 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-06-26T09:00:44Z</dc:date>
    <item>
      <title>Moving application server files to another folder</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/moving-application-server-files-to-another-folder/m-p/5801471#M1311741</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   Could anyone please tell me how to move the application server files from one folder to&lt;/P&gt;&lt;P&gt;   another through a program?&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sudeep&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Jun 2009 09:00:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/moving-application-server-files-to-another-folder/m-p/5801471#M1311741</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-26T09:00:44Z</dc:date>
    </item>
    <item>
      <title>Re: Moving application server files to another folder</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/moving-application-server-files-to-another-folder/m-p/5801472#M1311742</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U can copy the file from a folder to a target one by statament OPEN DATASET&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;* Open original file
OPEN DATASET FILE1 FOR INPUT IN TEXT MODE ENCODING DEFAULT. 
IF SY-SUBRC = 0.
* Open target file
  OPEN DATASET FILE2 FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.
  IF SY-SUBRC = 0.
     DO.
* Read file 1
        READ DATSET FILE1 INTO W_FILE.
        IF SY-SUBRC &amp;lt;&amp;gt; 0. EXIT. ENDIF.
* Move file 1 to file 2
        TRANSFER W_FILE TO FILE2.
     ENDDO.
     CLOSE DATASET FILE1.
     CLOSE DATASET FILE2.
  ENDIF.
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But you can use FTP command, in this case try to see the program demo RSFTP007&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Jun 2009 09:16:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/moving-application-server-files-to-another-folder/m-p/5801472#M1311742</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-26T09:16:43Z</dc:date>
    </item>
    <item>
      <title>Re: Moving application server files to another folder</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/moving-application-server-files-to-another-folder/m-p/5801473#M1311743</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Refer:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Tranfer file between folder in application server&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/scn/wiki?path=/display/community/transfer%252bfile%252bbetween%252bfolder%252bon%252bapplication%252bserver" target="test_blank"&gt;https://www.sdn.sap.com/irj/scn/wiki?path=/display/community/transfer%252bfile%252bbetween%252bfolder%252bon%252bapplication%252bserver&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Tarun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Jun 2009 11:33:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/moving-application-server-files-to-another-folder/m-p/5801473#M1311743</guid>
      <dc:creator>I355602</dc:creator>
      <dc:date>2009-06-26T11:33:20Z</dc:date>
    </item>
  </channel>
</rss>

