<?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 Excel Header in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/excel-header/m-p/1665158#M294510</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;my requirement is to download my internal table to an excel with header,&lt;/P&gt;&lt;P&gt;i created another internal table with header, and inserted it to index 1.&lt;/P&gt;&lt;P&gt;Program gives me a dump 'Conversion error'.&lt;/P&gt;&lt;P&gt;My last 3 fields of internal table are marc-minbe, mard-labst and mbew-verpr, if i do not use these fields in my header internal table, i am getting header for other fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how could i resolve the issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers,&lt;/P&gt;&lt;P&gt;Aditya.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P.S Is there any other way to add Headers, some say GUI_DOWNLOAD has an option of FIELDNAMES, but since my version is different i am not getting that option...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 26 Oct 2006 12:48:15 GMT</pubDate>
    <dc:creator>former_member184495</dc:creator>
    <dc:date>2006-10-26T12:48:15Z</dc:date>
    <item>
      <title>Excel Header</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/excel-header/m-p/1665158#M294510</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;my requirement is to download my internal table to an excel with header,&lt;/P&gt;&lt;P&gt;i created another internal table with header, and inserted it to index 1.&lt;/P&gt;&lt;P&gt;Program gives me a dump 'Conversion error'.&lt;/P&gt;&lt;P&gt;My last 3 fields of internal table are marc-minbe, mard-labst and mbew-verpr, if i do not use these fields in my header internal table, i am getting header for other fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how could i resolve the issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers,&lt;/P&gt;&lt;P&gt;Aditya.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P.S Is there any other way to add Headers, some say GUI_DOWNLOAD has an option of FIELDNAMES, but since my version is different i am not getting that option...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Oct 2006 12:48:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/excel-header/m-p/1665158#M294510</guid>
      <dc:creator>former_member184495</dc:creator>
      <dc:date>2006-10-26T12:48:15Z</dc:date>
    </item>
    <item>
      <title>Re: Excel Header</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/excel-header/m-p/1665159#M294511</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use that FM twice:&lt;/P&gt;&lt;P&gt;First time download only header&lt;/P&gt;&lt;P&gt;Second time append table contents to the same file (import parameter append = 'X')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Oct 2006 13:02:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/excel-header/m-p/1665159#M294511</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-26T13:02:05Z</dc:date>
    </item>
    <item>
      <title>Re: Excel Header</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/excel-header/m-p/1665160#M294512</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Aditya,&lt;/P&gt;&lt;P&gt;   The problem is the declaration for the last three fields.&lt;/P&gt;&lt;P&gt;instead of define the internal table fields as&lt;/P&gt;&lt;P&gt;minbe type marc-minbe&lt;/P&gt;&lt;P&gt;labst type mard-labst&lt;/P&gt;&lt;P&gt;verpr type mbew-verpr&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;declare them as&lt;/P&gt;&lt;P&gt;minde(17),&lt;/P&gt;&lt;P&gt;labst(17),&lt;/P&gt;&lt;P&gt;verpr(15),&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the final internal table.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Oct 2006 13:05:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/excel-header/m-p/1665160#M294512</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-26T13:05:20Z</dc:date>
    </item>
    <item>
      <title>Re: Excel Header</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/excel-header/m-p/1665161#M294513</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;answered&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 May 2007 06:45:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/excel-header/m-p/1665161#M294513</guid>
      <dc:creator>former_member184495</dc:creator>
      <dc:date>2007-05-01T06:45:44Z</dc:date>
    </item>
  </channel>
</rss>

