<?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 uploading data into &amp; from excel sheet in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-data-into-from-excel-sheet/m-p/2419712#M540125</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i hav data in 5 internal tabels i want the data into one excel sheet&lt;/P&gt;&lt;P&gt;each internal table in differnt tabs in that sheet&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz help its urgent&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;helpfull answers will be rewarded&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 22 Jun 2007 16:29:34 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-22T16:29:34Z</dc:date>
    <item>
      <title>uploading data into &amp; from excel sheet</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-data-into-from-excel-sheet/m-p/2419712#M540125</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i hav data in 5 internal tabels i want the data into one excel sheet&lt;/P&gt;&lt;P&gt;each internal table in differnt tabs in that sheet&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz help its urgent&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;helpfull answers will be rewarded&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jun 2007 16:29:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-data-into-from-excel-sheet/m-p/2419712#M540125</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-22T16:29:34Z</dc:date>
    </item>
    <item>
      <title>Re: uploading data into &amp; from excel sheet</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-data-into-from-excel-sheet/m-p/2419713#M540126</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check withl this FM : EXCEL_OLE_STANDARD_DAT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA_SHEET_NAME -&amp;gt; give diffrent names for each internal table and use file name as same name for all internal tables&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Seshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jun 2007 16:38:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-data-into-from-excel-sheet/m-p/2419713#M540126</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-22T16:38:43Z</dc:date>
    </item>
    <item>
      <title>Re: uploading data into &amp; from excel sheet</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-data-into-from-excel-sheet/m-p/2419714#M540127</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use gui_download FM 5 times.&lt;/P&gt;&lt;P&gt;first time dont specify the append.&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:\test.XLS'&lt;/P&gt;&lt;P&gt;    filetype                = 'ASC'&lt;/P&gt;&lt;P&gt;    write_field_separator   = '#'&lt;/P&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;    data_tab                = itab1.&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:\test.XLS'&lt;/P&gt;&lt;P&gt;    write_field_separator   = '#'&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;    append                  = 'X'&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;    data_tab                = itab2.&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:\test.XLS'&lt;/P&gt;&lt;P&gt;    write_field_separator   = '#'&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;    append                  = 'X'&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;    data_tab                = itab3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;similarly call for 4th &amp;amp; 5th itab&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jun 2007 16:41:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/uploading-data-into-from-excel-sheet/m-p/2419714#M540127</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-22T16:41:43Z</dc:date>
    </item>
  </channel>
</rss>

