<?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: nested structures in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/nested-structures/m-p/6146289#M1367773</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;tcode:se11&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;table or&lt;/P&gt;&lt;P&gt;data type-&amp;gt; structure&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can include structures or append structures&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 07 Oct 2009 07:16:07 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-10-07T07:16:07Z</dc:date>
    <item>
      <title>nested structures</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/nested-structures/m-p/6146285#M1367769</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want to know how to do the nested structures in abap. can i do it, if means can u plz tell how to do it with the example plzzzzzz?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Sep 2009 11:08:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/nested-structures/m-p/6146285#M1367769</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-04T11:08:56Z</dc:date>
    </item>
    <item>
      <title>Re: nested structures</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/nested-structures/m-p/6146286#M1367770</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;Create one structure---&amp;gt;Include another structure in that.&lt;/P&gt;&lt;P&gt;again include the first structure into another structure. &lt;/P&gt;&lt;P&gt;for Example see : LEDLV_DELNOTE structure.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Sep 2009 13:34:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/nested-structures/m-p/6146286#M1367770</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-04T13:34:38Z</dc:date>
    </item>
    <item>
      <title>Re: nested structures</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/nested-structures/m-p/6146287#M1367771</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;
"1. example of including structures (not nested, same level)
DATA: BEGIN OF struct1,
       field1 TYPE c,
       field2 TYPE c,
      END OF struct1.

DATA: BEGIN OF struct2,
       field3 TYPE c,
       field4 TYPE c.
        INCLUDE STRUCTURE struct1.  "&amp;lt;- components of struct1 are just included on same level to struct2
DATA  END OF struct2.

"2. example of nesting structures (different levels)
DATA: BEGIN OF struct3,
       field1 TYPE c,
       field2 TYPE c,
      END OF struct3.

DATA: BEGIN OF struct4,
       field3 TYPE c,
       field4 TYPE c,
       nested like struct3, "&amp;lt;- these components (of struct3 are nested) - included as subsctructure
      END OF struct4.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Just check in debugger how it looks like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Marcin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Sep 2009 13:50:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/nested-structures/m-p/6146287#M1367771</guid>
      <dc:creator>MarcinPciak</dc:creator>
      <dc:date>2009-09-04T13:50:21Z</dc:date>
    </item>
    <item>
      <title>Re: nested structures</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/nested-structures/m-p/6146288#M1367772</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 one - &lt;A href="http://help.sap.com/saphelp_nw70/helpdata/EN/fc/eb3364358411d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw70/helpdata/EN/fc/eb3364358411d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Oct 2009 12:22:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/nested-structures/m-p/6146288#M1367772</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-05T12:22:40Z</dc:date>
    </item>
    <item>
      <title>Re: nested structures</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/nested-structures/m-p/6146289#M1367773</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;tcode:se11&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;table or&lt;/P&gt;&lt;P&gt;data type-&amp;gt; structure&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can include structures or append structures&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Oct 2009 07:16:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/nested-structures/m-p/6146289#M1367773</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-07T07:16:07Z</dc:date>
    </item>
    <item>
      <title>Re: nested structures</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/nested-structures/m-p/6146290#M1367774</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks to all of them who answered.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Nov 2009 11:30:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/nested-structures/m-p/6146290#M1367774</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-19T11:30:16Z</dc:date>
    </item>
  </channel>
</rss>

