<?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 GUI_UPLOAD in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload/m-p/943783#M63710</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   I want to upload five different tab delimited text file to the respective internal tables.  The obvious way to do this is using GUI_UPLOAD function for each and every text file.  Is it possible to perform this by using GUI_UPLOAD only once in an subroutine and calling the subroutine five times by passing the internal table name and the file  name? Or suggest me is there any other way?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Arokiaraj. S&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 20 Jul 2005 08:06:21 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-07-20T08:06:21Z</dc:date>
    <item>
      <title>GUI_UPLOAD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload/m-p/943783#M63710</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   I want to upload five different tab delimited text file to the respective internal tables.  The obvious way to do this is using GUI_UPLOAD function for each and every text file.  Is it possible to perform this by using GUI_UPLOAD only once in an subroutine and calling the subroutine five times by passing the internal table name and the file  name? Or suggest me is there any other way?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Arokiaraj. S&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jul 2005 08:06:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload/m-p/943783#M63710</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-20T08:06:21Z</dc:date>
    </item>
    <item>
      <title>Re: GUI_UPLOAD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload/m-p/943784#M63711</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;1) collect your itabs in an int.table ztab&lt;/P&gt;&lt;P&gt;2) loop ztab&lt;/P&gt;&lt;P&gt; a) gui_uplod (e.g. with filename = tabname)&lt;/P&gt;&lt;P&gt; b) do your processing &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;-&amp;gt; example for download:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT TABNAME devclass FROM  INFO_TABL INTO TABLE itab
         WHERE  TABNAME IN TABN
         AND    DEVCLASS = DEVC
         AND    tabclass = 'TRANSP'.

  LOOP AT itab.
  
  create data dyn_tab type standard table of (itab-tabn).
  assign dyn_tab-&amp;gt;* to &amp;lt;dyn_tab&amp;gt;.

  SELECT * FROM (itab-TABN) INTO table &amp;lt;dyn_tab&amp;gt;.

  CALL FUNCTION 'GUI_DOWNLOAD'
       EXPORTING
            filetype = 'ASC'
            filename = filename
       TABLES
            data_tab = &amp;lt;dyn_tab&amp;gt;.


  endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards Andreas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jul 2005 08:14:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload/m-p/943784#M63711</guid>
      <dc:creator>andreas_mann3</dc:creator>
      <dc:date>2005-07-20T08:14:42Z</dc:date>
    </item>
    <item>
      <title>Re: GUI_UPLOAD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload/m-p/943785#M63712</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;You can do that by passing filename and data_tab[internal table] to the subrotine.your datatab should be passed as changing parameter.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jul 2005 08:21:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload/m-p/943785#M63712</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2005-07-20T08:21:33Z</dc:date>
    </item>
    <item>
      <title>Re: GUI_UPLOAD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload/m-p/943786#M63713</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;yes i guess u can do that:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  PERFORM f100_upload_data USING    file name&lt;/P&gt;&lt;P&gt;                           CHANGING internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anjali.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jul 2005 08:43:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/gui-upload/m-p/943786#M63713</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-20T08:43:53Z</dc:date>
    </item>
  </channel>
</rss>

