<?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: Error Message:  GUI_DOWNLOAD in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-gui-download/m-p/3003624#M709693</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;People,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Excuse me, but think that I didn't understand. I'm trying to save the file in my computer and not in the server. I can do it using Open Dataset in background ? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 31 Oct 2007 18:58:14 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-31T18:58:14Z</dc:date>
    <item>
      <title>Error Message:  GUI_DOWNLOAD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-gui-download/m-p/3003615#M709684</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi people,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could help me please.&lt;/P&gt;&lt;P&gt;1 - In this case, i have a simple program to download a itab contents. When i executing it  on-line, saving in a local drive, the file is created normally, but when is executed in Background saving in a local drive too, the Job is terminated, but the file isn't created. In the end of this message have a example of the code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2 - In other case,  I have 1 program that executing in background too, the JOB aren't concluded and occurs Exception Error: UNKNOWN_ERROR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Code Example for the 1. problem.&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT ZZ_TESTE .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables: t030.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: it_t030  LIKE t030     OCCURS 0 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;      i_ktopl             LIKE t030-ktopl,&lt;/P&gt;&lt;P&gt;      v_tabix like sy-tabix.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of itab_t030 occurs 0.&lt;/P&gt;&lt;P&gt;          include structure t030.&lt;/P&gt;&lt;P&gt;data: end of itab_t030.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen begin of block b1 with frame title text-001.&lt;/P&gt;&lt;P&gt;  parameters: p_ktopl like t030-ktopl obligatory.&lt;/P&gt;&lt;P&gt;selection-screen end of block b1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      v_tabix = sy-tabix.&lt;/P&gt;&lt;P&gt;      select ktopl&lt;/P&gt;&lt;P&gt;             ktosl&lt;/P&gt;&lt;P&gt;             bwmod&lt;/P&gt;&lt;P&gt;             komok&lt;/P&gt;&lt;P&gt;             bklas&lt;/P&gt;&lt;P&gt;             konts&lt;/P&gt;&lt;P&gt;             konth&lt;/P&gt;&lt;P&gt;     FROM t030&lt;/P&gt;&lt;P&gt;     INTO table it_t030&lt;/P&gt;&lt;P&gt;     WHERE ktopl = p_ktopl.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        CALL FUNCTION 'GUI_DOWNLOAD'&lt;/P&gt;&lt;P&gt;         EXPORTING&lt;/P&gt;&lt;P&gt;            FILENAME                             = 'C:\TESTE_FLAVIO.TXT'&lt;/P&gt;&lt;P&gt;            FILETYPE                              = 'ASC'&lt;/P&gt;&lt;P&gt;            DAT_MODE                           = space&lt;/P&gt;&lt;P&gt;         TABLES&lt;/P&gt;&lt;P&gt;            DATA_TAB                              = it_t030&lt;/P&gt;&lt;P&gt;         EXCEPTIONS&lt;/P&gt;&lt;P&gt;           FILE_WRITE_ERROR                = 1&lt;/P&gt;&lt;P&gt;           NO_BATCH                                = 2&lt;/P&gt;&lt;P&gt;           GUI_REFUSE_FILETRANSFER         = 3&lt;/P&gt;&lt;P&gt;           INVALID_TYPE                            = 4&lt;/P&gt;&lt;P&gt;           NO_AUTHORITY                          = 5&lt;/P&gt;&lt;P&gt;           UNKNOWN_ERROR                   = 6&lt;/P&gt;&lt;P&gt;           HEADER_NOT_ALLOWED              = 7&lt;/P&gt;&lt;P&gt;           SEPARATOR_NOT_ALLOWED           = 8&lt;/P&gt;&lt;P&gt;           FILESIZE_NOT_ALLOWED            = 9&lt;/P&gt;&lt;P&gt;           HEADER_TOO_LONG                 = 10&lt;/P&gt;&lt;P&gt;           DP_ERROR_CREATE                 = 11&lt;/P&gt;&lt;P&gt;           DP_ERROR_SEND                   = 12&lt;/P&gt;&lt;P&gt;           DP_ERROR_WRITE                  = 13&lt;/P&gt;&lt;P&gt;           UNKNOWN_DP_ERROR                = 14&lt;/P&gt;&lt;P&gt;           ACCESS_DENIED                   = 15&lt;/P&gt;&lt;P&gt;           DP_OUT_OF_MEMORY                = 16&lt;/P&gt;&lt;P&gt;           DISK_FULL                       = 17&lt;/P&gt;&lt;P&gt;           DP_TIMEOUT                      = 18&lt;/P&gt;&lt;P&gt;           FILE_NOT_FOUND                  = 19&lt;/P&gt;&lt;P&gt;           DATAPROVIDER_EXCEPTION          = 20&lt;/P&gt;&lt;P&gt;           CONTROL_FLUSH_ERROR             = 21&lt;/P&gt;&lt;P&gt;           OTHERS                          = 22.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Oct 2007 12:13:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-gui-download/m-p/3003615#M709684</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-31T12:13:16Z</dc:date>
    </item>
    <item>
      <title>Re: Error Message:  GUI_DOWNLOAD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-gui-download/m-p/3003616#M709685</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;In background the GUI_DOWNLOAD FM fails...so u have to use OPEN DATASET .so that ur file will be downloaded to application server....&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   Internal table to display error contracts  .&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;     i_error         TYPE STANDARD TABLE OF t_error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Declaration of local variables&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  DATA : lv_dsn3(1000) TYPE c,&lt;/P&gt;&lt;P&gt;         lv_dsn4(1000) TYPE c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; IF NOT i_error IS INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      LOOP AT i_error INTO wa_error.&lt;/P&gt;&lt;P&gt;        CONCATENATE  wa_error-lifnr&lt;/P&gt;&lt;P&gt;                     wa_error-evart&lt;/P&gt;&lt;P&gt;                     wa_error-vedat&lt;/P&gt;&lt;P&gt;                     wa_error-ekorg&lt;/P&gt;&lt;P&gt;                     wa_error-ekgrp&lt;/P&gt;&lt;P&gt;                     wa_error-epstp&lt;/P&gt;&lt;P&gt;                     wa_error-knttp&lt;/P&gt;&lt;P&gt;                     wa_error-bukrs&lt;/P&gt;&lt;P&gt;                     wa_error-kdatb&lt;/P&gt;&lt;P&gt;                     wa_error-kdate&lt;/P&gt;&lt;P&gt;                     wa_error-ktwrt&lt;/P&gt;&lt;P&gt;                     wa_error-waers&lt;/P&gt;&lt;P&gt;                     wa_error-wkurs&lt;/P&gt;&lt;P&gt;                     wa_error-inco1&lt;/P&gt;&lt;P&gt;                     wa_error-inco2&lt;/P&gt;&lt;P&gt;                     wa_error-ihran&lt;/P&gt;&lt;P&gt;                     wa_error-angnr&lt;/P&gt;&lt;P&gt;                     wa_error-msg&lt;/P&gt;&lt;P&gt;                     INTO wa_input1 SEPARATED BY c_tab .&lt;/P&gt;&lt;P&gt;        APPEND wa_input1 TO i_input1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        CLEAR : wa_input1,&lt;/P&gt;&lt;P&gt;                wa_error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Move the contract error files to the application server&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      CONCATENATE v_fname1(15) lc_path1 p_aerfl1 INTO lv_dsn3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      OPEN DATASET lv_dsn3 FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      CHECK sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      LOOP AT i_input1 INTO wa_input1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        TRANSFER wa_input1 TO lv_dsn3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      CLOSE DATASET lv_dsn3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    ENDIF.       &lt;/P&gt;&lt;P&gt;Rewrad if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nagaraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Oct 2007 12:18:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-gui-download/m-p/3003616#M709685</guid>
      <dc:creator>former_member404244</dc:creator>
      <dc:date>2007-10-31T12:18:05Z</dc:date>
    </item>
    <item>
      <title>Re: Error Message:  GUI_DOWNLOAD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-gui-download/m-p/3003617#M709686</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See some times there will be some authorizationproblems,becoz whn u use some server related  areas,it will say this kind of error..Becoz u r telling tht it is not showing any error in foreground right...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It might be also one of the problem...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U can OOABAP,Use classes and methods from that classes to download..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if useful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Oct 2007 12:20:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-gui-download/m-p/3003617#M709686</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-31T12:20:24Z</dc:date>
    </item>
    <item>
      <title>Re: Error Message:  GUI_DOWNLOAD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-gui-download/m-p/3003618#M709687</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Replace 'ASC' with 'DAT', Try&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'GUI_DOWNLOAD'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;FILENAME = 'C:\TESTE_FLAVIO.TXT'&lt;/P&gt;&lt;P&gt;FILETYPE = 'DAT'&lt;/P&gt;&lt;P&gt;DAT_MODE = space&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;DATA_TAB = it_t030&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bye,&lt;/P&gt;&lt;P&gt;KC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Oct 2007 12:21:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-gui-download/m-p/3003618#M709687</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-31T12:21:20Z</dc:date>
    </item>
    <item>
      <title>Re: Error Message:  GUI_DOWNLOAD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-gui-download/m-p/3003619#M709688</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In background you cannot access local gui property, cause there is no "local disk" nor Graphical User Interface.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Some ways to solve your problem :&lt;/P&gt;&lt;P&gt;- Use a dataset (on application server)&lt;/P&gt;&lt;P&gt;- Use ftp&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Oct 2007 12:37:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-gui-download/m-p/3003619#M709688</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2007-10-31T12:37:19Z</dc:date>
    </item>
    <item>
      <title>Re: Error Message:  GUI_DOWNLOAD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-gui-download/m-p/3003620#M709689</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;gui_download will use URL to download file. it works only in frontend. &lt;/P&gt;&lt;P&gt;In background mode it can't read URL . SO you can't use gui_dwonload&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are downloading from application server you can use open dataset statement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Oct 2007 12:46:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-gui-download/m-p/3003620#M709689</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-31T12:46:32Z</dc:date>
    </item>
    <item>
      <title>Re: Error Message:  GUI_DOWNLOAD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-gui-download/m-p/3003621#M709690</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Raymond&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you have any sample, using FTP, please ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Oct 2007 12:59:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-gui-download/m-p/3003621#M709690</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-31T12:59:05Z</dc:date>
    </item>
    <item>
      <title>Re: Error Message:  GUI_DOWNLOAD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-gui-download/m-p/3003622#M709691</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Flavio,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The recommended option is to download it on application server &amp;amp; then ask the user to transfer it manually to presentation server.&lt;/P&gt;&lt;P&gt;Transaction CG3Y &amp;amp; CG3Z are used for the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please use OPEN DATASET to download file on application server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Prashant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Oct 2007 13:08:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-gui-download/m-p/3003622#M709691</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-31T13:08:54Z</dc:date>
    </item>
    <item>
      <title>Re: Error Message:  GUI_DOWNLOAD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-gui-download/m-p/3003623#M709692</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Look at this thread &lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="598443"&gt;&lt;/A&gt; there you will find a sample.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Oct 2007 13:33:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-gui-download/m-p/3003623#M709692</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2007-10-31T13:33:45Z</dc:date>
    </item>
    <item>
      <title>Re: Error Message:  GUI_DOWNLOAD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-gui-download/m-p/3003624#M709693</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;People,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Excuse me, but think that I didn't understand. I'm trying to save the file in my computer and not in the server. I can do it using Open Dataset in background ? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Oct 2007 18:58:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-gui-download/m-p/3003624#M709693</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-31T18:58:14Z</dc:date>
    </item>
    <item>
      <title>Re: Error Message:  GUI_DOWNLOAD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-gui-download/m-p/3003625#M709694</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Oct 2007 19:12:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-gui-download/m-p/3003625#M709694</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-31T19:12:22Z</dc:date>
    </item>
    <item>
      <title>Re: Error Message:  GUI_DOWNLOAD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-gui-download/m-p/3003626#M709695</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No you cannot save your file to your personal computer in background, except if YOUR PC is a FTP server....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Look at these blogs : &amp;lt;a href="/people/monalisa.biswal/blog/2007/06/28/download-in-background in Background&amp;lt;/a&amp;gt; and &amp;lt;a href="/people/thomas.jung3/blog/2004/11/15/performing-ftp-commands-from-abap FTP Commands From ABAP&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Nov 2007 07:04:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-gui-download/m-p/3003626#M709695</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2007-11-02T07:04:56Z</dc:date>
    </item>
  </channel>
</rss>

