<?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: Extended syntax check for include structure in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/extended-syntax-check-for-include-structure/m-p/1280755#M152689</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES : MARA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : BEGIN OF T_DATA OCCURS 0.&lt;/P&gt;&lt;P&gt;         WERKS TYPE WERKS_D.&lt;/P&gt;&lt;P&gt;         INCLUDE STRUCTURE MARA.&lt;/P&gt;&lt;P&gt;DATA : END OF RFCTAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Shashank&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 10 Apr 2006 04:55:02 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-04-10T04:55:02Z</dc:date>
    <item>
      <title>Extended syntax check for include structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extended-syntax-check-for-include-structure/m-p/1280751#M152685</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While declaring the internal table as:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF t_data.&lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE mara.&lt;/P&gt;&lt;P&gt;TYPES: END   OF t_data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: it_data TYPE table of t_data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When performing extended check, i get following error:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The current ABAP command is obsolete and problematic, especially so in ABAP&lt;/P&gt;&lt;P&gt;Objects&lt;/P&gt;&lt;P&gt;Within classes and interfaces, you can only use "TYPE" to refer to ABAP Dictionary&lt;/P&gt;&lt;P&gt;types, not "LIKE" or "STRUCTURE".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using 4.7 version.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any clue how to avoid this error during extended check.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Tarun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Apr 2006 04:40:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-syntax-check-for-include-structure/m-p/1280751#M152685</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-10T04:40:28Z</dc:date>
    </item>
    <item>
      <title>Re: Extended syntax check for include structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extended-syntax-check-for-include-structure/m-p/1280752#M152686</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tarun,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use it like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES :  T_DATA type table of MARA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Apr 2006 04:44:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-syntax-check-for-include-structure/m-p/1280752#M152686</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-10T04:44:39Z</dc:date>
    </item>
    <item>
      <title>Re: Extended syntax check for include structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extended-syntax-check-for-include-structure/m-p/1280753#M152687</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Ravi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suppose i have the requirement like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types: begin of t_data,&lt;/P&gt;&lt;P&gt;         werks type werks_d.&lt;/P&gt;&lt;P&gt;        include structure mara&lt;/P&gt;&lt;P&gt;types: end of t_data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data: gt_data type table of t_data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then how to avoid the error getting in extended check.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Tarun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Apr 2006 04:47:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-syntax-check-for-include-structure/m-p/1280753#M152687</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-10T04:47:58Z</dc:date>
    </item>
    <item>
      <title>Re: Extended syntax check for include structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extended-syntax-check-for-include-structure/m-p/1280754#M152688</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tarun,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With WAS 6.20 you should not declare internal tables with header line or using the old syntax as they are not compatible with OO ABAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, you either declare a TYPE the way you have done, in case you want additional fields apart from the INCLUDE structure, or declare the table directly like the way I have shown.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good thing, you can even specify the type of internal table that you want to create using this - STANDARD, SORTED, HASH. These tables will help you with the performance issues.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note : Please mark the helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Apr 2006 04:50:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-syntax-check-for-include-structure/m-p/1280754#M152688</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-10T04:50:49Z</dc:date>
    </item>
    <item>
      <title>Re: Extended syntax check for include structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extended-syntax-check-for-include-structure/m-p/1280755#M152689</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES : MARA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : BEGIN OF T_DATA OCCURS 0.&lt;/P&gt;&lt;P&gt;         WERKS TYPE WERKS_D.&lt;/P&gt;&lt;P&gt;         INCLUDE STRUCTURE MARA.&lt;/P&gt;&lt;P&gt;DATA : END OF RFCTAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Shashank&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Apr 2006 04:55:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-syntax-check-for-include-structure/m-p/1280755#M152689</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-10T04:55:02Z</dc:date>
    </item>
  </channel>
</rss>

