<?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 Re: Data transfer from application server to sap system in binary mode in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-transfer-from-application-server-to-sap-system-in-binary-mode/m-p/2937073#M692212</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;Syntax for reading the file &lt;/P&gt;&lt;P&gt;OPEN DATASET file FOR INPUT IN BINARY MODE &lt;/P&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;DO.&lt;/P&gt;&lt;P&gt;      READ DATASET file INTO wa_record.&lt;/P&gt;&lt;P&gt;ENDDO.&lt;/P&gt;&lt;P&gt;CLOSE DATASET file.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;syntax for writing file.&lt;/P&gt;&lt;P&gt;OPEN DATASET  file FOR OUTPUT  IN  BINARY MODE .&lt;/P&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;transfer wa_record to file.&lt;/P&gt;&lt;P&gt;CLOSE DATASET file.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can also transfer file from application server to presentation server using transaction CG3Y by specifying source path(app ser),destination path(presentation ser) and tranfer format (BIN).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To copy the file from one location to other location in application server&lt;/P&gt;&lt;P&gt;use the FM 'ARCHIVFILE_SERVER_TO_SERVER'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward points if needful..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 11 Oct 2007 07:36:30 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-11T07:36:30Z</dc:date>
    <item>
      <title>Data transfer from application server to sap system in binary mode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-transfer-from-application-server-to-sap-system-in-binary-mode/m-p/2937071#M692210</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can any one help me out in &lt;/P&gt;&lt;P&gt;how to read,open the dataset (syntax) while transfering the file from application server in binary mode ?&lt;/P&gt;&lt;P&gt;how to move the file to differrent location in the same server?&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;mohan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        mohan kumard&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Oct 2007 13:29:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-transfer-from-application-server-to-sap-system-in-binary-mode/m-p/2937071#M692210</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-10T13:29:46Z</dc:date>
    </item>
    <item>
      <title>Re: Data transfer from application server to sap system in binary mode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-transfer-from-application-server-to-sap-system-in-binary-mode/m-p/2937072#M692211</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use sample report rsftp004&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Oct 2007 13:46:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-transfer-from-application-server-to-sap-system-in-binary-mode/m-p/2937072#M692211</guid>
      <dc:creator>andreas_mann3</dc:creator>
      <dc:date>2007-10-10T13:46:40Z</dc:date>
    </item>
    <item>
      <title>Re: Data transfer from application server to sap system in binary mode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-transfer-from-application-server-to-sap-system-in-binary-mode/m-p/2937073#M692212</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;Syntax for reading the file &lt;/P&gt;&lt;P&gt;OPEN DATASET file FOR INPUT IN BINARY MODE &lt;/P&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;DO.&lt;/P&gt;&lt;P&gt;      READ DATASET file INTO wa_record.&lt;/P&gt;&lt;P&gt;ENDDO.&lt;/P&gt;&lt;P&gt;CLOSE DATASET file.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;syntax for writing file.&lt;/P&gt;&lt;P&gt;OPEN DATASET  file FOR OUTPUT  IN  BINARY MODE .&lt;/P&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;transfer wa_record to file.&lt;/P&gt;&lt;P&gt;CLOSE DATASET file.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can also transfer file from application server to presentation server using transaction CG3Y by specifying source path(app ser),destination path(presentation ser) and tranfer format (BIN).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To copy the file from one location to other location in application server&lt;/P&gt;&lt;P&gt;use the FM 'ARCHIVFILE_SERVER_TO_SERVER'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward points if needful..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 07:36:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-transfer-from-application-server-to-sap-system-in-binary-mode/m-p/2937073#M692212</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-11T07:36:30Z</dc:date>
    </item>
  </channel>
</rss>

