<?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: Send Data to a Filesystem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-data-to-a-filesystem/m-p/1383932#M187083</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Daniel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use Func Module:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'EPS_FTP_PUT'&lt;/P&gt;&lt;P&gt;         EXPORTING&lt;/P&gt;&lt;P&gt;             RFC_DESTINATION      = rfc_dest&lt;/P&gt;&lt;P&gt;             LOCAL_FILE           = loc_file&lt;/P&gt;&lt;P&gt;             LOCAL_DIRECTORY      = loc_dir&lt;/P&gt;&lt;P&gt;             REMOTE_FILE          = rem_file&lt;/P&gt;&lt;P&gt;             REMOTE_DIRECTORY     = rem_dir&lt;/P&gt;&lt;P&gt;             OVERWRITE_MODE       = over&lt;/P&gt;&lt;P&gt;             TEXT_MODE            = text&lt;/P&gt;&lt;P&gt;             TRANSMISSION_MONITOR = moni&lt;/P&gt;&lt;P&gt;             RECORDS_PER_TRANSFER = rpt&lt;/P&gt;&lt;P&gt;             MONITOR_TITLE        = gv_monitor_title&lt;/P&gt;&lt;P&gt;             PROGRESS_TEXT        = gv_progress_text&lt;/P&gt;&lt;P&gt;             OBJECT_NAME          = loc_file&lt;/P&gt;&lt;P&gt;         IMPORTING&lt;/P&gt;&lt;P&gt;             LOCAL_DIRECTORY      = gv_local_dir&lt;/P&gt;&lt;P&gt;             LOCAL_PATH           = gv_local_path&lt;/P&gt;&lt;P&gt;             REMOTE_DIRECTORY     = gv_remote_dir&lt;/P&gt;&lt;P&gt;             REMOTE_PATH          = gv_remote_path&lt;/P&gt;&lt;P&gt;             FILE_SIZE            = gv_file_size&lt;/P&gt;&lt;P&gt;             LOCAL_SYSTEM_INFO    = gs_local_info&lt;/P&gt;&lt;P&gt;             REMOTE_SYSTEM_INFO   = gs_remote_info&lt;/P&gt;&lt;P&gt;         EXCEPTIONS&lt;/P&gt;&lt;P&gt;             OTHERS               = 99.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 17 Jul 2006 18:42:53 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-07-17T18:42:53Z</dc:date>
    <item>
      <title>Send Data to a Filesystem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-data-to-a-filesystem/m-p/1383930#M187081</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have to send a File (ASCII) from SAP to an other network. There is no SAP.&lt;/P&gt;&lt;P&gt;How can I send data to the other filesystem?&lt;/P&gt;&lt;P&gt;Is there a BAPI or with RFC?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Jul 2006 18:04:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-data-to-a-filesystem/m-p/1383930#M187081</guid>
      <dc:creator>dmi</dc:creator>
      <dc:date>2006-07-17T18:04:36Z</dc:date>
    </item>
    <item>
      <title>Re: Send Data to a Filesystem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-data-to-a-filesystem/m-p/1383931#M187082</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Daniel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use FTP to send data file.&lt;/P&gt;&lt;P&gt;Please check this standard program. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RSEPSFTP &lt;/P&gt;&lt;P&gt;RSFTP002&lt;/P&gt;&lt;P&gt;RSFTP007&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Jul 2006 18:07:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-data-to-a-filesystem/m-p/1383931#M187082</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-17T18:07:21Z</dc:date>
    </item>
    <item>
      <title>Re: Send Data to a Filesystem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-data-to-a-filesystem/m-p/1383932#M187083</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Daniel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use Func Module:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'EPS_FTP_PUT'&lt;/P&gt;&lt;P&gt;         EXPORTING&lt;/P&gt;&lt;P&gt;             RFC_DESTINATION      = rfc_dest&lt;/P&gt;&lt;P&gt;             LOCAL_FILE           = loc_file&lt;/P&gt;&lt;P&gt;             LOCAL_DIRECTORY      = loc_dir&lt;/P&gt;&lt;P&gt;             REMOTE_FILE          = rem_file&lt;/P&gt;&lt;P&gt;             REMOTE_DIRECTORY     = rem_dir&lt;/P&gt;&lt;P&gt;             OVERWRITE_MODE       = over&lt;/P&gt;&lt;P&gt;             TEXT_MODE            = text&lt;/P&gt;&lt;P&gt;             TRANSMISSION_MONITOR = moni&lt;/P&gt;&lt;P&gt;             RECORDS_PER_TRANSFER = rpt&lt;/P&gt;&lt;P&gt;             MONITOR_TITLE        = gv_monitor_title&lt;/P&gt;&lt;P&gt;             PROGRESS_TEXT        = gv_progress_text&lt;/P&gt;&lt;P&gt;             OBJECT_NAME          = loc_file&lt;/P&gt;&lt;P&gt;         IMPORTING&lt;/P&gt;&lt;P&gt;             LOCAL_DIRECTORY      = gv_local_dir&lt;/P&gt;&lt;P&gt;             LOCAL_PATH           = gv_local_path&lt;/P&gt;&lt;P&gt;             REMOTE_DIRECTORY     = gv_remote_dir&lt;/P&gt;&lt;P&gt;             REMOTE_PATH          = gv_remote_path&lt;/P&gt;&lt;P&gt;             FILE_SIZE            = gv_file_size&lt;/P&gt;&lt;P&gt;             LOCAL_SYSTEM_INFO    = gs_local_info&lt;/P&gt;&lt;P&gt;             REMOTE_SYSTEM_INFO   = gs_remote_info&lt;/P&gt;&lt;P&gt;         EXCEPTIONS&lt;/P&gt;&lt;P&gt;             OTHERS               = 99.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Jul 2006 18:42:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-data-to-a-filesystem/m-p/1383932#M187083</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-17T18:42:53Z</dc:date>
    </item>
  </channel>
</rss>

