<?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 Badi Declarattion Error. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/badi-declarattion-error/m-p/3991061#M953509</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        I am doing coding in the IF_EX_BADI_SD_BILLING~INVOICE_DOCUMENT_CHECK&lt;/P&gt;&lt;P&gt;method, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When i do the following code, it says the following error,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; DATA : ggoodsmvt_header  TYPE STANDARD TABLE OF  bapi2017_gm_head_01 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Error : &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tables with headers are no longer supported in the OO context.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to correct and declare the above statement, pls advise me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Rajaram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 13 Jun 2008 06:08:28 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-13T06:08:28Z</dc:date>
    <item>
      <title>Badi Declarattion Error.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/badi-declarattion-error/m-p/3991061#M953509</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        I am doing coding in the IF_EX_BADI_SD_BILLING~INVOICE_DOCUMENT_CHECK&lt;/P&gt;&lt;P&gt;method, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When i do the following code, it says the following error,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; DATA : ggoodsmvt_header  TYPE STANDARD TABLE OF  bapi2017_gm_head_01 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Error : &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tables with headers are no longer supported in the OO context.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to correct and declare the above statement, pls advise me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Rajaram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jun 2008 06:08:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/badi-declarattion-error/m-p/3991061#M953509</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-13T06:08:28Z</dc:date>
    </item>
    <item>
      <title>Re: Badi Declarattion Error.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/badi-declarattion-error/m-p/3991062#M953510</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Ram,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Tables with header lines are not supported in OOABAP.So you have declare a table and header line( work area) seperately .I hope there will not be any error if you declare like that. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Veeresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jun 2008 06:10:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/badi-declarattion-error/m-p/3991062#M953510</guid>
      <dc:creator>former_member673464</dc:creator>
      <dc:date>2008-06-13T06:10:56Z</dc:date>
    </item>
    <item>
      <title>Re: Badi Declarattion Error.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/badi-declarattion-error/m-p/3991063#M953511</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;generally tables with header line are obsolete. So you have to define structure which you will use as a header line&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA : ggoodsmvt_header TYPE STANDARD TABLE OF bapi2017_gm_head_01,
            ggoodsmvt_header_line TYPE api2017_gm_head_01.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jun 2008 06:11:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/badi-declarattion-error/m-p/3991063#M953511</guid>
      <dc:creator>mvoros</dc:creator>
      <dc:date>2008-06-13T06:11:17Z</dc:date>
    </item>
    <item>
      <title>Re: Badi Declarattion Error.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/badi-declarattion-error/m-p/3991064#M953512</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;In OO ABAP programming you cannot use tables with names the same as the header line. Also you should use TYPE instead LIKE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;see the help&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_47x200/helpdata/en/fc/eb36a1358411d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_47x200/helpdata/en/fc/eb36a1358411d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Kiran Sure&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jun 2008 06:19:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/badi-declarattion-error/m-p/3991064#M953512</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-13T06:19:32Z</dc:date>
    </item>
    <item>
      <title>Re: Badi Declarattion Error.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/badi-declarattion-error/m-p/3991065#M953513</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then how to declare the header table yar,&lt;/P&gt;&lt;P&gt;pls advise me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jun 2008 06:53:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/badi-declarattion-error/m-p/3991065#M953513</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-13T06:53:07Z</dc:date>
    </item>
    <item>
      <title>Re: Badi Declarattion Error.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/badi-declarattion-error/m-p/3991066#M953514</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 your table without header line and declare a work area to use instead of header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Soumya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jun 2008 07:31:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/badi-declarattion-error/m-p/3991066#M953514</guid>
      <dc:creator>soumya_jose3</dc:creator>
      <dc:date>2008-06-13T07:31:02Z</dc:date>
    </item>
  </channel>
</rss>

