<?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: Please Help in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/please-help/m-p/2783916#M649002</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks to all masters!!!&lt;/P&gt;&lt;P&gt;  Especially to master gopi!!! It works!! &lt;/P&gt;&lt;P&gt; 'till next questions...ehehe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 07 Sep 2007 06:40:40 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-09-07T06:40:40Z</dc:date>
    <item>
      <title>Please Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/please-help/m-p/2783911#M648997</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a code like this:&lt;/P&gt;&lt;P&gt;My purpose is to have a header in my excel summary report.&lt;/P&gt;&lt;P&gt;But there's an error like this: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"Field "gv_HEADING-TEXT" is unknown. It is neither in one of the&lt;/P&gt;&lt;P&gt;specified tables nor defined by a "DATA" statement. "DATA" statement."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sample code in my program:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: gv_heading(10)  type c. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; gv_HEADING-TEXT = 'Company Code'.&lt;/P&gt;&lt;P&gt;    append IT_HEADING.&lt;/P&gt;&lt;P&gt;    gv_HEADING-TEXT = 'RFQ Number'.&lt;/P&gt;&lt;P&gt;    append IT_HEADING.&lt;/P&gt;&lt;P&gt;    gv_HEADING-TEXT = 'RFQ Line Item'.&lt;/P&gt;&lt;P&gt;    append IT_HEADING.&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                = L_FNAME&lt;/P&gt;&lt;P&gt;        FILETYPE                = 'DAT'&lt;/P&gt;&lt;P&gt;      tables&lt;/P&gt;&lt;P&gt;        DATA_TAB                = IT_FINAL&lt;/P&gt;&lt;P&gt;        FIELDNAMES              = gv_HEADING&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me in solving this problem.&lt;/P&gt;&lt;P&gt;more points!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Sep 2007 06:19:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/please-help/m-p/2783911#M648997</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-07T06:19:10Z</dc:date>
    </item>
    <item>
      <title>Re: Please Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/please-help/m-p/2783912#M648998</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;data : begin of GV_HEADING occurs 0,
         TEXT(15),
       end of GV_HEADING.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Pratyusha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Sep 2007 06:21:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/please-help/m-p/2783912#M648998</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-07T06:21:19Z</dc:date>
    </item>
    <item>
      <title>Re: Please Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/please-help/m-p/2783913#M648999</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Salma,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
" i missed the declaration in my previous post.
* Excel fieldname heading
data : begin of IT_HEADING occurs 0,
         TEXT(15),
       end of IT_HEADING.

    IT_HEADING-TEXT = 'Company Code'.
    append IT_HEADING.
    IT_HEADING-TEXT = 'RFQ Number'.
    append IT_HEADING.
    IT_HEADING-TEXT = 'RFQ Line Item'.
    append IT_HEADING.

    call function 'GUI_DOWNLOAD'
      exporting
        FILENAME                = L_FNAME
        FILETYPE                = 'DAT'
      tables
        DATA_TAB                = IT_FINAL
        FIELDNAMES              = IT_HEADING
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Gopi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Sep 2007 06:25:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/please-help/m-p/2783913#M648999</guid>
      <dc:creator>gopi_narendra</dc:creator>
      <dc:date>2007-09-07T06:25:32Z</dc:date>
    </item>
    <item>
      <title>Re: Please Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/please-help/m-p/2783914#M649000</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;gv_HEADING is of type C.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and it dont have and components TEXT..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think your It_heading is having the component TEXT..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now define.&lt;/P&gt;&lt;P&gt;data gv_heading type &amp;lt;It_heading type&amp;gt; .. I.e you might have it_heading of some type declare thesame for gv_heading..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types: begin of ty_heading ,&lt;/P&gt;&lt;P&gt;         text(200) type c,&lt;/P&gt;&lt;P&gt;        end of ty_heading.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data gv_heading type ty_heading.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rewards if useful,&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;nazeer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Sep 2007 06:26:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/please-help/m-p/2783914#M649000</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-07T06:26:55Z</dc:date>
    </item>
    <item>
      <title>Re: Please Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/please-help/m-p/2783915#M649001</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;declare gv_heading as a workarea and use it as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types: begin of gv_heading1&lt;/P&gt;&lt;P&gt;                  text(15) type c,&lt;/P&gt;&lt;P&gt;         endof gv_heading1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: gv_heading type gv_heading1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;gv_HEADING-TEXT = 'Company Code'.&lt;/P&gt;&lt;P&gt;append IT_HEADING.&lt;/P&gt;&lt;P&gt;gv_HEADING-TEXT = 'RFQ Number'.&lt;/P&gt;&lt;P&gt;append IT_HEADING.&lt;/P&gt;&lt;P&gt;gv_HEADING-TEXT = 'RFQ Line Item'.&lt;/P&gt;&lt;P&gt;append IT_HEADING.&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 = L_FNAME&lt;/P&gt;&lt;P&gt;FILETYPE = 'DAT'&lt;/P&gt;&lt;P&gt;tables&lt;/P&gt;&lt;P&gt;DATA_TAB = IT_FINAL&lt;/P&gt;&lt;P&gt;FIELDNAMES = gv_HEADING&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if helpful reward some points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with regards,&lt;/P&gt;&lt;P&gt;Suresh Aluri.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Sep 2007 06:32:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/please-help/m-p/2783915#M649001</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-07T06:32:29Z</dc:date>
    </item>
    <item>
      <title>Re: Please Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/please-help/m-p/2783916#M649002</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks to all masters!!!&lt;/P&gt;&lt;P&gt;  Especially to master gopi!!! It works!! &lt;/P&gt;&lt;P&gt; 'till next questions...ehehe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Sep 2007 06:40:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/please-help/m-p/2783916#M649002</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-07T06:40:40Z</dc:date>
    </item>
  </channel>
</rss>

