<?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 Error in extended program check in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-extended-program-check/m-p/2440095#M546080</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;I m getting following error in Extended Program Check..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;The current ABAP command is obsolete&lt;/P&gt;&lt;P&gt;Tables with headers are no longer supported in the OO context.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for the below declaration..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;data: I_fieldcatalog type  slis_t_fieldcat_alv WITH HEADER LINE .&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;could anyone help me.&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 04 Jul 2007 05:34:49 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-04T05:34:49Z</dc:date>
    <item>
      <title>Error in extended program check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-extended-program-check/m-p/2440095#M546080</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;I m getting following error in Extended Program Check..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;The current ABAP command is obsolete&lt;/P&gt;&lt;P&gt;Tables with headers are no longer supported in the OO context.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for the below declaration..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;data: I_fieldcatalog type  slis_t_fieldcat_alv WITH HEADER LINE .&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;could anyone help me.&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jul 2007 05:34:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-extended-program-check/m-p/2440095#M546080</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-04T05:34:49Z</dc:date>
    </item>
    <item>
      <title>Re: Error in extended program check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-extended-program-check/m-p/2440096#M546081</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;Use as follows&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;DATA: I_fieldcatalog type slis_t_fieldcat_alv,&lt;/P&gt;&lt;P&gt;        wa_fieldcaalog like line of I_fieldcatalog.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you use HEADERLINE you will get one WOrkarea and an intenral table with one declaration.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your case I_fieldcatalog is a workarea and I_fieldcatalog[ ] is the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This usage is obsolete as it leads to confustion with CLEAR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you use CLEAR I_fieldcatalog you may assume that table is cleared but here only workarea is cleared.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So you need to use the above given declaration and change all your&lt;/P&gt;&lt;P&gt;APPEND I_fieldcatalog.  to&lt;/P&gt;&lt;P&gt;APPEND wa_fieldcatalog toI_fieldcatalog.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;simlarly for INSERT and MODIFY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jul 2007 05:37:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-extended-program-check/m-p/2440096#M546081</guid>
      <dc:creator>seshatalpasai_madala</dc:creator>
      <dc:date>2007-07-04T05:37:28Z</dc:date>
    </item>
    <item>
      <title>Re: Error in extended program check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-extended-program-check/m-p/2440097#M546082</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kalyani,&lt;/P&gt;&lt;P&gt; Already u r using TYPE statement. So with header line is not allowing in the type statement. So remove that with header line statement.&lt;/P&gt;&lt;P&gt;Hope this helps you. Reply for queries, shall post the updates. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.  &lt;/P&gt;&lt;P&gt;Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jul 2007 05:47:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-extended-program-check/m-p/2440097#M546082</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-04T05:47:15Z</dc:date>
    </item>
  </channel>
</rss>

