<?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 WHEN USING GUI_DOWNLOAD. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/when-using-gui-download/m-p/2198361#M469459</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;I am bit confused about this GUI_UPLOAD and GUI_DOWNLOAD.&lt;/P&gt;&lt;P&gt;pls let me know when we want the data in *.txt format in the desktop from the table (like MARA)....which function we use....and when placing in to presentation server which function we use.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 21 Apr 2007 13:25:54 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-21T13:25:54Z</dc:date>
    <item>
      <title>WHEN USING GUI_DOWNLOAD.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/when-using-gui-download/m-p/2198361#M469459</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;I am bit confused about this GUI_UPLOAD and GUI_DOWNLOAD.&lt;/P&gt;&lt;P&gt;pls let me know when we want the data in *.txt format in the desktop from the table (like MARA)....which function we use....and when placing in to presentation server which function we use.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 Apr 2007 13:25:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/when-using-gui-download/m-p/2198361#M469459</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-21T13:25:54Z</dc:date>
    </item>
    <item>
      <title>Re: WHEN USING GUI_DOWNLOAD.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/when-using-gui-download/m-p/2198362#M469460</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 is to download a file from SAP to Presentation Server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GUI_UPLOAD is to upload a file from Presentation Server to SAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So if you need to transfer the data from SAP table to a file in your desktop you have to use GUI_DOWNLOAD: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: BEGIN OF T_MARA OCCURS 0,
  MATNR TYPE MATNR, 
END OF T_MARA.

SELECT MATNR FROM MARA INTO T_MARA WHERE ....

CALL FUNCTION 'GUI_DOWNLOAD'
   EXPORTING
        filename         = &amp;lt;path&amp;gt;
        filetype         = 'ASC'
   TABLES
        data_tab         = t_mara
   EXCEPTIONS
        file_open_error  = 1
        file_write_error = 2
        OTHERS           = 3.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 Apr 2007 13:28:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/when-using-gui-download/m-p/2198362#M469460</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-21T13:28:36Z</dc:date>
    </item>
  </channel>
</rss>

