<?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: Strange Error in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/strange-error/m-p/1530862#M242619</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Amit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Reference ALV GRID program using ABAP OBJECTS,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BCALV_EDIT_01&lt;/P&gt;&lt;P&gt;BCALV_EDIT_02&lt;/P&gt;&lt;P&gt;BCALV_EDIT_03&lt;/P&gt;&lt;P&gt;BCALV_EDIT_04&lt;/P&gt;&lt;P&gt;BCALV_EDIT_05&lt;/P&gt;&lt;P&gt;BCALV_EDIT_06&lt;/P&gt;&lt;P&gt;BCALV_EDIT_07&lt;/P&gt;&lt;P&gt;BCALV_EDIT_08&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Azaz Ali.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 01 Aug 2006 21:16:54 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-08-01T21:16:54Z</dc:date>
    <item>
      <title>Strange Error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/strange-error/m-p/1530858#M242615</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   I am creating the ALV grid using method and class.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have declare the following fields as&lt;/P&gt;&lt;P&gt;DATA: i_fieldcat TYPE lvc_t_fcat,&lt;/P&gt;&lt;P&gt;      wa_fieldcat TYPE lvc_t_fcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and below i am filling the structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR i_fieldcat.&lt;/P&gt;&lt;P&gt;  CLEAR wa_fieldcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  wa_fieldcat-fieldname = 'BUKRS'.&lt;/P&gt;&lt;P&gt;  wa_fieldcat-inttype = 'C'.&lt;/P&gt;&lt;P&gt;  wa_fieldcat-outputlen = 4.&lt;/P&gt;&lt;P&gt;  wa_fieldcat-coltext  =  text-t01.&lt;/P&gt;&lt;P&gt;  APPEND wa_fieldcat TO i_fieldcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When i am activing the code it is throwing the error&lt;/P&gt;&lt;P&gt;"WA_FIELDCAT is a table without a header line and therefore has no componentcalled FIELDNAME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using the same code in another program and other program is working perfectly all right. I am not able to find why it is throwing such error. Please help me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;amit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Aug 2006 21:10:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/strange-error/m-p/1530858#M242615</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-01T21:10:16Z</dc:date>
    </item>
    <item>
      <title>Re: Strange Error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/strange-error/m-p/1530859#M242616</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please change the code as follows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

DATA: i_fieldcat TYPE lvc_t_fcat,
      wa_fieldcat TYPE &amp;lt;b&amp;gt;lvc_s_fcat&amp;lt;/b&amp;gt;.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REgards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Aug 2006 21:13:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/strange-error/m-p/1530859#M242616</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-08-01T21:13:12Z</dc:date>
    </item>
    <item>
      <title>Re: Strange Error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/strange-error/m-p/1530860#M242617</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;DATA: i_fieldcat like lvc_t_fcat occurs 0 with header line,&lt;/P&gt;&lt;P&gt;wa_fieldcat TYPE lvc_t_fcat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Aug 2006 21:13:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/strange-error/m-p/1530860#M242617</guid>
      <dc:creator>Manohar2u</dc:creator>
      <dc:date>2006-08-01T21:13:34Z</dc:date>
    </item>
    <item>
      <title>Re: Strange Error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/strange-error/m-p/1530861#M242618</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The reason is that you have defined the work area wa_fieldcat as the type table lvc_t_fcat, since it is a table type, there is no header line,  which means that the ABAP syntax checking can not see the structure.  You must reference the structure LVC_S_FCAT for your work area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REgards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Aug 2006 21:14:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/strange-error/m-p/1530861#M242618</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-08-01T21:14:45Z</dc:date>
    </item>
    <item>
      <title>Re: Strange Error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/strange-error/m-p/1530862#M242619</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Amit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Reference ALV GRID program using ABAP OBJECTS,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BCALV_EDIT_01&lt;/P&gt;&lt;P&gt;BCALV_EDIT_02&lt;/P&gt;&lt;P&gt;BCALV_EDIT_03&lt;/P&gt;&lt;P&gt;BCALV_EDIT_04&lt;/P&gt;&lt;P&gt;BCALV_EDIT_05&lt;/P&gt;&lt;P&gt;BCALV_EDIT_06&lt;/P&gt;&lt;P&gt;BCALV_EDIT_07&lt;/P&gt;&lt;P&gt;BCALV_EDIT_08&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Azaz Ali.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Aug 2006 21:16:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/strange-error/m-p/1530862#M242619</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-01T21:16:54Z</dc:date>
    </item>
    <item>
      <title>Re: Strange Error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/strange-error/m-p/1530863#M242620</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Rich, now it is activated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Aug 2006 21:17:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/strange-error/m-p/1530863#M242620</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-01T21:17:00Z</dc:date>
    </item>
  </channel>
</rss>

