<?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: File transfer in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-transfer/m-p/3297826#M789261</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hai ,&lt;/P&gt;&lt;P&gt;plz Refer to the Function Module&lt;/P&gt;&lt;P&gt;Just Run The following FModule In SE37&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;C13z_app_to_front_end.&lt;/P&gt;&lt;P&gt;Then Give respective File Paths&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 01 Feb 2008 11:22:37 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-01T11:22:37Z</dc:date>
    <item>
      <title>File transfer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-transfer/m-p/3297823#M789258</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can any one suggest me the ways with which we can transfer the file from application server to local file.&lt;/P&gt;&lt;P&gt;Even i want an F4 help suggesting the path of the local server where the file is to be stored.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jan 2008 08:26:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-transfer/m-p/3297823#M789258</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-31T08:26:11Z</dc:date>
    </item>
    <item>
      <title>Re: File transfer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-transfer/m-p/3297824#M789259</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Harshad,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; It is designed for both upload and download and delete file from the application server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Depends on the radio button check it will process ur request. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="---------------------------------" /&gt;***&lt;P&gt;&lt;/P&gt;&lt;P&gt;types: begin of ty_rawdata,&lt;/P&gt;&lt;P&gt;LINE(1000) TYPE C,&lt;/P&gt;&lt;P&gt;end of ty_rawdata.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types: begin of ty_errors,&lt;/P&gt;&lt;P&gt;recordnumber type i,&lt;/P&gt;&lt;P&gt;errormessage(135) type c,&lt;/P&gt;&lt;P&gt;end of ty_errors.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;v_record_type(3),&lt;/P&gt;&lt;P&gt;v_runstatus,&lt;/P&gt;&lt;P&gt;f_errors(1) type c,&lt;/P&gt;&lt;P&gt;v_errors type ty_errors,&lt;/P&gt;&lt;P&gt;v_abort,&lt;/P&gt;&lt;P&gt;v_rawdata type ty_rawdata,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cnt_db_inserts type i,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;v_linesread type i,&lt;/P&gt;&lt;P&gt;v_recordsread type i,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;v_filename like rlgrap-filename,&lt;/P&gt;&lt;P&gt;v_infile like rlgrap-filename,&lt;/P&gt;&lt;P&gt;v_outfile like rlgrap-filename.&lt;/P&gt;&lt;P&gt;************************************************************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INTERNAL TABLES * &lt;/P&gt;&lt;P&gt;************************************************************************&lt;/P&gt;&lt;P&gt;data:&lt;/P&gt;&lt;P&gt;TBL_RAWDATA TYPE TY_RAWDATA OCCURS 0 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;TBL_ERRORS TYPE TY_ERRORS OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;p_up radiobutton group r1,&lt;/P&gt;&lt;P&gt;p_dn radiobutton group r1,&lt;/P&gt;&lt;P&gt;p_del radiobutton group r1,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;p_pfile like rlgrap-filename,&lt;/P&gt;&lt;P&gt;p_afile like rlgrap-filename default '/tmp/'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;************************************************************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INITIALISATION * &lt;/P&gt;&lt;P&gt;************************************************************************&lt;/P&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;************************************************************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION SCREEN * &lt;/P&gt;&lt;P&gt;************************************************************************&lt;/P&gt;&lt;P&gt;at selection-screen on value-request for p_pfile.&lt;/P&gt;&lt;P&gt;call function 'KD_GET_FILENAME_ON_F4'&lt;/P&gt;&lt;P&gt;exporting&lt;/P&gt;&lt;P&gt;mask = ',Text files, *.txt'&lt;/P&gt;&lt;P&gt;static = 'X'&lt;/P&gt;&lt;P&gt;changing&lt;/P&gt;&lt;P&gt;file_name = p_pfile.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;************************************************************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START OF SELECTION * &lt;/P&gt;&lt;P&gt;************************************************************************&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if p_up = 'X'.&lt;/P&gt;&lt;P&gt;perform file_upload_presentation_srvr using p_pfile.&lt;/P&gt;&lt;P&gt;perform file_save using p_afile changing sy-subrc.&lt;/P&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;write / 'file uploaded'.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;elseif p_dn = 'X'.&lt;/P&gt;&lt;P&gt;perform file_upload using p_afile.&lt;/P&gt;&lt;P&gt;perform file_save_presentation using p_pfile.&lt;/P&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;write / 'file downloaded'.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;elseif p_del = 'X'.&lt;/P&gt;&lt;P&gt;perform file_delete using p_afile.&lt;/P&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;write / 'file deleted'.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;amp;----&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;*&amp;amp; Form file_upload&lt;/P&gt;&lt;P&gt;&amp;amp;----&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;form file_upload using v_lfilename like v_filename.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: v_msg(100).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Open the file for upload in text mode, and trap any messages. &lt;/P&gt;&lt;P&gt;open dataset v_lfilename for input in text mode message v_msg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if sy-subrc ne 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Input file not found! &lt;/P&gt;&lt;P&gt;Process the error with an abort &lt;/P&gt;&lt;P&gt;message E006(ZSEC) with v_lfilename.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The file has opened successfully. Upload every line in the file. &lt;/P&gt;&lt;P&gt;do.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clear the work area, and read the record from the dataset. &lt;/P&gt;&lt;P&gt;clear v_rawdata.&lt;/P&gt;&lt;P&gt;read dataset v_lfilename into v_rawdata.&lt;/P&gt;&lt;P&gt;if sy-subrc ne 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The end of the file has been reached, so exit the 'DO' loop. &lt;/P&gt;&lt;P&gt;exit.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;v_linesread = v_linesread + 1.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Append the raw data line to the raw data internal table &lt;/P&gt;&lt;P&gt;append v_rawdata to tbl_rawdata.&lt;/P&gt;&lt;P&gt;enddo.&lt;/P&gt;&lt;P&gt;close dataset v_lfilename.&lt;/P&gt;&lt;P&gt;endif. "&lt;/P&gt;&lt;P&gt;endform. " file_upload&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;amp;----&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;*&amp;amp; Form file_upload_presentation_srvr&lt;/P&gt;&lt;P&gt;&amp;amp;----&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;form file_upload_presentation_srvr using v_lfilename like v_filename.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call function 'WS_UPLOAD'&lt;/P&gt;&lt;P&gt;exporting&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CODEPAGE = ' ' &lt;/P&gt;&lt;P&gt;filename = v_lfilename&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FILETYPE = 'ASC' &lt;/P&gt;&lt;P&gt;HEADLEN = ' ' &lt;/P&gt;&lt;P&gt;LINE_EXIT = ' ' &lt;/P&gt;&lt;P&gt;TRUNCLEN = ' ' &lt;/P&gt;&lt;P&gt;USER_FORM = ' ' &lt;/P&gt;&lt;P&gt;USER_PROG = ' ' &lt;/P&gt;&lt;P&gt;DAT_D_FORMAT = ' ' &lt;/P&gt;&lt;P&gt;IMPORTING &lt;/P&gt;&lt;P&gt;FILELENGTH = &lt;/P&gt;&lt;P&gt;tables&lt;/P&gt;&lt;P&gt;data_tab = tbl_rawdata&lt;/P&gt;&lt;P&gt;exceptions&lt;/P&gt;&lt;P&gt;conversion_error = 1&lt;/P&gt;&lt;P&gt;file_open_error = 2&lt;/P&gt;&lt;P&gt;file_read_error = 3&lt;/P&gt;&lt;P&gt;invalid_type = 4&lt;/P&gt;&lt;P&gt;no_batch = 5&lt;/P&gt;&lt;P&gt;unknown_error = 6&lt;/P&gt;&lt;P&gt;invalid_table_width = 7&lt;/P&gt;&lt;P&gt;gui_refuse_filetransfer = 8&lt;/P&gt;&lt;P&gt;customer_error = 9&lt;/P&gt;&lt;P&gt;others = 10&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;if sy-subrc 0 or v_lfilename is initial.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If no filename given, set the system variables to output message &lt;/P&gt;&lt;P&gt;if v_filename is initial.&lt;/P&gt;&lt;P&gt;message E005(ZSEC).&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;Input file not found! &lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;describe table tbl_rawdata lines v_linesread.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endform. " file_upload_presentation_srvr&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;amp;----&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;*&amp;amp; Form file_delete&lt;/P&gt;&lt;P&gt;&amp;amp;----&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;form file_delete using v_lfilename like v_filename.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check program is not aborted &lt;/P&gt;&lt;P&gt;check v_abort is initial.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;delete dataset v_lfilename.&lt;/P&gt;&lt;P&gt;if sy-subrc ne 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Append the message output to the error tracing table! &lt;/P&gt;&lt;P&gt;message E007(ZSEC) with v_lfilename.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endform. " file_delete&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;amp;----&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;*&amp;amp; Form file_save&lt;/P&gt;&lt;P&gt;&amp;amp;----&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;form file_save using v_lfilename like v_filename&lt;/P&gt;&lt;P&gt;changing v_lsubrc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: v_lmsg(100).&lt;/P&gt;&lt;P&gt;data: v_lsubrc2.&lt;/P&gt;&lt;P&gt;clear: v_lsubrc, v_lsubrc2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check program is not aborted &lt;/P&gt;&lt;P&gt;check v_abort is initial.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Open the file &lt;/P&gt;&lt;P&gt;open dataset v_lfilename for output in text mode message v_lmsg.&lt;/P&gt;&lt;P&gt;if sy-subrc ne 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Append the message output to the error tracing table! &lt;/P&gt;&lt;P&gt;v_lsubrc2 = 4.&lt;/P&gt;&lt;P&gt;message E006(ZSEC) with v_lfilename.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;clear v_rawdata.&lt;/P&gt;&lt;P&gt;loop at tbl_rawdata into v_rawdata.&lt;/P&gt;&lt;P&gt;transfer v_rawdata to v_lfilename.&lt;/P&gt;&lt;P&gt;if sy-subrc ne 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Error transferring data! &lt;/P&gt;&lt;P&gt;v_lsubrc2 = 4.&lt;/P&gt;&lt;P&gt;message E008(ZSEC) with v_lfilename.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;clear v_rawdata.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Close the file &lt;/P&gt;&lt;P&gt;close dataset v_lfilename.&lt;/P&gt;&lt;P&gt;if sy-subrc ne 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Error closing the dataset! &lt;/P&gt;&lt;P&gt;v_lsubrc2 = 4.&lt;/P&gt;&lt;P&gt;message E009(ZSEC) with v_lfilename.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;v_lsubrc = v_lsubrc2.&lt;/P&gt;&lt;P&gt;endform. " file_save&lt;/P&gt;&lt;P&gt;&amp;amp;----&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;*&amp;amp; Form file_save_presentation&lt;/P&gt;&lt;P&gt;&amp;amp;----&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;text &lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;--&amp;gt;P_P_PFILE text &lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------------------------" /&gt;&lt;P&gt;form file_save_presentation using p_dnfile like rlgrap-filename.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'WS_DOWNLOAD'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BIN_FILESIZE = ' ' &lt;/P&gt;&lt;P&gt;CODEPAGE = ' ' &lt;/P&gt;&lt;P&gt;FILENAME = P_DNFILE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FILETYPE = ' ' &lt;/P&gt;&lt;P&gt;MODE = ' ' &lt;/P&gt;&lt;P&gt;WK1_N_FORMAT = ' ' &lt;/P&gt;&lt;P&gt;WK1_N_SIZE = ' ' &lt;/P&gt;&lt;P&gt;WK1_T_FORMAT = ' ' &lt;/P&gt;&lt;P&gt;WK1_T_SIZE = ' ' &lt;/P&gt;&lt;P&gt;COL_SELECT = ' ' &lt;/P&gt;&lt;P&gt;COL_SELECTMASK = ' ' &lt;/P&gt;&lt;P&gt;NO_AUTH_CHECK = ' ' &lt;/P&gt;&lt;P&gt;IMPORTING &lt;/P&gt;&lt;P&gt;FILELENGTH = &lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;DATA_TAB = TBL_RAWDATA&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELDNAMES = &lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;FILE_OPEN_ERROR = 1&lt;/P&gt;&lt;P&gt;FILE_WRITE_ERROR = 2&lt;/P&gt;&lt;P&gt;INVALID_FILESIZE = 3&lt;/P&gt;&lt;P&gt;INVALID_TABLE_WIDTH = 4&lt;/P&gt;&lt;P&gt;INVALID_TYPE = 5&lt;/P&gt;&lt;P&gt;NO_BATCH = 6&lt;/P&gt;&lt;P&gt;UNKNOWN_ERROR = 7&lt;/P&gt;&lt;P&gt;OTHERS = 8.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endform. " file_save_presentation&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if found helpfull,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Chaitanya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jan 2008 08:29:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-transfer/m-p/3297824#M789259</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-31T08:29:39Z</dc:date>
    </item>
    <item>
      <title>Re: File transfer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-transfer/m-p/3297825#M789260</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;tcodes CG3Z and CG3Y&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jan 2008 14:52:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-transfer/m-p/3297825#M789260</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-31T14:52:43Z</dc:date>
    </item>
    <item>
      <title>Re: File transfer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-transfer/m-p/3297826#M789261</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hai ,&lt;/P&gt;&lt;P&gt;plz Refer to the Function Module&lt;/P&gt;&lt;P&gt;Just Run The following FModule In SE37&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;C13z_app_to_front_end.&lt;/P&gt;&lt;P&gt;Then Give respective File Paths&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Feb 2008 11:22:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-transfer/m-p/3297826#M789261</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-01T11:22:37Z</dc:date>
    </item>
  </channel>
</rss>

