<?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: itab declaration in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/itab-declaration/m-p/1139794#M114254</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp; Report  YCHATEST                                                    *&lt;/P&gt;&lt;P&gt;*&amp;amp;                                                                     *&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;                                                                     *&lt;/P&gt;&lt;P&gt;*&amp;amp;                                                                     *&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  YCHATEST                                .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF rec1, &lt;/P&gt;&lt;P&gt;         f1(1) TYPE C, &lt;/P&gt;&lt;P&gt;         f2    TYPE I, &lt;/P&gt;&lt;P&gt;       END OF rec1. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF rec2. &lt;/P&gt;&lt;P&gt;         INCLUDE TYPE rec1 AS g RENAMING WITH SUFFIX _g. &lt;/P&gt;&lt;P&gt;         INCLUDE TYPE rec1 AS h RENAMING WITH SUFFIX _h. &lt;/P&gt;&lt;P&gt;TYPES: END OF rec2. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: str TYPE rec2. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The structure str consists of four components str-f1_g, str-f2_g, str-f1_h and str-f2_h. Using the group component str-g you can address the first two components; you can then address the latter two using str-h These substructures are of the type rec1.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 26 Jan 2006 07:58:07 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-01-26T07:58:07Z</dc:date>
    <item>
      <title>itab declaration</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/itab-declaration/m-p/1139792#M114252</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Iam trying to declare two strucures into one itab like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

data: begin of t_qmel occurs 0.
&amp;lt;b&amp;gt;     include structure qmel.
        include structure qmih.&amp;lt;/b&amp;gt;
data:   fegrp like qmfe-fegrp,
        fecod like qmfe-fecod,
data: end of t_qmel.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since common fields(MANDT &amp;amp; QMNUM) are existing in QMIH it is throwing the error.How can i avoid that? I dont want to declare field by field using QMIH.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers&lt;/P&gt;&lt;P&gt;kaki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jan 2006 07:31:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/itab-declaration/m-p/1139792#M114252</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-26T07:31:13Z</dc:date>
    </item>
    <item>
      <title>Re: itab declaration</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/itab-declaration/m-p/1139793#M114253</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can include the second structure by adding a suffix like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INCLUDE STRUCTURE qmih AS name1 RENAMING WITH SUFFIX name2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;You can address the components included in INCLUDE STRUCTURE as a single entity using the group name name1. The behavior is the same as in addition 1. When the components of the structure s are included, the component names are renamed by appending the name name2. This allows you to include structure s more than once. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;Rao A&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Rao Arimilli&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jan 2006 07:49:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/itab-declaration/m-p/1139793#M114253</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-26T07:49:43Z</dc:date>
    </item>
    <item>
      <title>Re: itab declaration</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/itab-declaration/m-p/1139794#M114254</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp; Report  YCHATEST                                                    *&lt;/P&gt;&lt;P&gt;*&amp;amp;                                                                     *&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;                                                                     *&lt;/P&gt;&lt;P&gt;*&amp;amp;                                                                     *&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  YCHATEST                                .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF rec1, &lt;/P&gt;&lt;P&gt;         f1(1) TYPE C, &lt;/P&gt;&lt;P&gt;         f2    TYPE I, &lt;/P&gt;&lt;P&gt;       END OF rec1. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF rec2. &lt;/P&gt;&lt;P&gt;         INCLUDE TYPE rec1 AS g RENAMING WITH SUFFIX _g. &lt;/P&gt;&lt;P&gt;         INCLUDE TYPE rec1 AS h RENAMING WITH SUFFIX _h. &lt;/P&gt;&lt;P&gt;TYPES: END OF rec2. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: str TYPE rec2. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The structure str consists of four components str-f1_g, str-f2_g, str-f1_h and str-f2_h. Using the group component str-g you can address the first two components; you can then address the latter two using str-h These substructures are of the type rec1.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jan 2006 07:58:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/itab-declaration/m-p/1139794#M114254</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-26T07:58:07Z</dc:date>
    </item>
    <item>
      <title>Re: itab declaration</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/itab-declaration/m-p/1139795#M114255</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for all posts&lt;/P&gt;&lt;P&gt;points alloted&lt;/P&gt;&lt;P&gt;cheers&lt;/P&gt;&lt;P&gt;kaki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jan 2006 08:03:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/itab-declaration/m-p/1139795#M114255</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-26T08:03:06Z</dc:date>
    </item>
  </channel>
</rss>

