<?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: Error on extended check for types include structure statements in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-on-extended-check-for-types-include-structure-statements/m-p/6596086#M1436613</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;declare as :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: i_fttax TYPE STANDARD TABLE OF fttax,&lt;/P&gt;&lt;P&gt;           wa_fttax TYPE fttax.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No need to declare as : &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;TYPES: BEGIN OF t_fttax.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;          &lt;STRONG&gt;INCLUDE STRUCTURE fttax.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;  &lt;STRONG&gt;TYPES: END OF t_fttax.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 19 Feb 2010 14:31:55 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-02-19T14:31:55Z</dc:date>
    <item>
      <title>Error on extended check for types include structure statements</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-on-extended-check-for-types-include-structure-statements/m-p/6596085#M1436612</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All ,&lt;/P&gt;&lt;P&gt;              On Extended check im getting error :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Program:  ZFIR_VALUATE_OBSOLETE_STOCK  Include:  ZFIR_VALUATE_OBSOLETE_STOCK_F  Row:   1205
The current ABAP command is obsolete
 Within classes and interfaces, you can only use "TYPE" to refer to ABAP Dictionary
 types, not "LIKE" or "STRUCTURE".
Internal Message Code: MESSAGE G/B
 (The message cannot be hidden using pseudo-comment "#EC .., bzw. durch SET
 EXTENDED CHECK OFF/ON)&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The error is in below line :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TYPES: BEGIN OF t_fttax.
          INCLUDE STRUCTURE fttax.
  TYPES: END OF t_fttax.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and fttax is a dictionary strucuture . i made internal table and work area using it .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: i_fttax TYPE STANDARD TABLE OF t_fttax,
        wa_fttax TYPE t_fttax.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Need Help ,what i should do to remove this error ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Feb 2010 14:22:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-on-extended-check-for-types-include-structure-statements/m-p/6596085#M1436612</guid>
      <dc:creator>former_member242512</dc:creator>
      <dc:date>2010-02-19T14:22:00Z</dc:date>
    </item>
    <item>
      <title>Re: Error on extended check for types include structure statements</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-on-extended-check-for-types-include-structure-statements/m-p/6596086#M1436613</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;declare as :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: i_fttax TYPE STANDARD TABLE OF fttax,&lt;/P&gt;&lt;P&gt;           wa_fttax TYPE fttax.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No need to declare as : &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;TYPES: BEGIN OF t_fttax.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;          &lt;STRONG&gt;INCLUDE STRUCTURE fttax.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;  &lt;STRONG&gt;TYPES: END OF t_fttax.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Feb 2010 14:31:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-on-extended-check-for-types-include-structure-statements/m-p/6596086#M1436613</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-19T14:31:55Z</dc:date>
    </item>
    <item>
      <title>Re: Error on extended check for types include structure statements</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-on-extended-check-for-types-include-structure-statements/m-p/6596087#M1436614</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;TYPES: BEGIN OF t_fttax.
INCLUDE TYPE   fttax.
TYPES : END OF t_fttax.


DATA: i_fttax  TYPE STANDARD TABLE OF t_fttax,
      wa_fttax TYPE t_fttax.&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Feb 2010 14:59:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-on-extended-check-for-types-include-structure-statements/m-p/6596087#M1436614</guid>
      <dc:creator>Pawan_Kesari</dc:creator>
      <dc:date>2010-02-19T14:59:53Z</dc:date>
    </item>
    <item>
      <title>Re: Error on extended check for types include structure statements</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-on-extended-check-for-types-include-structure-statements/m-p/6596088#M1436615</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Srini....thanks all ..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Feb 2010 15:08:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-on-extended-check-for-types-include-structure-statements/m-p/6596088#M1436615</guid>
      <dc:creator>former_member242512</dc:creator>
      <dc:date>2010-02-19T15:08:13Z</dc:date>
    </item>
    <item>
      <title>Re: Error on extended check for types include structure statements</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-on-extended-check-for-types-include-structure-statements/m-p/6596089#M1436616</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TYPES:  t_fttax TYPE fttax.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Feb 2010 15:09:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-on-extended-check-for-types-include-structure-statements/m-p/6596089#M1436616</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-19T15:09:59Z</dc:date>
    </item>
  </channel>
</rss>

