<?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: Reading Excel File from Application Server in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-excel-file-from-application-server/m-p/6518810#M1424810</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dinesh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How u read .XLS file from Application Server,  Can u send me Code Sample&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 09 Feb 2011 13:38:52 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-02-09T13:38:52Z</dc:date>
    <item>
      <title>Reading Excel File from Application Server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-excel-file-from-application-server/m-p/6518805#M1424805</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have an excel file on the application server which I have to read and process. I can do this with open dataset but my problem is the excel file has header data (names of the fields) in each column. Is there any way to skip the header row from the excel file when reading from the application server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Dec 2009 10:50:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-excel-file-from-application-server/m-p/6518805#M1424805</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-28T10:50:47Z</dc:date>
    </item>
    <item>
      <title>Re: Reading Excel File from Application Server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-excel-file-from-application-server/m-p/6518806#M1424806</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;Header line will be there at once only , so read from the second record i.e consider that header line is one record.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Read the file and if no record found exit the loop.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    READ DATASET physical file INTO temp table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Always the first record of the application server file is Header line.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;So header line is skiping&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    IF sy-index =  1.&lt;/P&gt;&lt;P&gt;      CONTINUE.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bharani&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Dec 2009 11:09:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-excel-file-from-application-server/m-p/6518806#M1424806</guid>
      <dc:creator>BH2408</dc:creator>
      <dc:date>2009-12-28T11:09:21Z</dc:date>
    </item>
    <item>
      <title>Re: Reading Excel File from Application Server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-excel-file-from-application-server/m-p/6518807#M1424807</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dishant, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do not consider the first line in your internal table when you read it from file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or you can delete it by using index = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Dec 2009 15:59:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-excel-file-from-application-server/m-p/6518807#M1424807</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-28T15:59:01Z</dc:date>
    </item>
    <item>
      <title>Re: Reading Excel File from Application Server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-excel-file-from-application-server/m-p/6518808#M1424808</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why cant you read the whole and skip the first line while processing ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check this link &lt;SPAN __jive_macro_name="thread" id="802883"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Dec 2009 16:04:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-excel-file-from-application-server/m-p/6518808#M1424808</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2009-12-28T16:04:46Z</dc:date>
    </item>
    <item>
      <title>Re: Reading Excel File from Application Server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-excel-file-from-application-server/m-p/6518809#M1424809</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;requirement changed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Nov 2010 16:03:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-excel-file-from-application-server/m-p/6518809#M1424809</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-11-30T16:03:20Z</dc:date>
    </item>
    <item>
      <title>Re: Reading Excel File from Application Server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-excel-file-from-application-server/m-p/6518810#M1424810</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dinesh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How u read .XLS file from Application Server,  Can u send me Code Sample&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Feb 2011 13:38:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-excel-file-from-application-server/m-p/6518810#M1424810</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-09T13:38:52Z</dc:date>
    </item>
  </channel>
</rss>

