<?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/2644021#M608893</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The structure of a data object can be an &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;elementary field, a &lt;/P&gt;&lt;P&gt;structure, or an &lt;/P&gt;&lt;P&gt;internal table.&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Structures and internal tables are complex data obejcts. Since it is possible to combine structures and internal tables in any way, we can can also make a general distinction between different types of structures, internal tables, and data structures. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A structure can be: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A &amp;lt;b&amp;gt;simple structure&amp;lt;/b&amp;gt; (as opposed to complex structures). A simple structure is a structure with elementary components. &lt;/P&gt;&lt;P&gt;A &amp;lt;b&amp;gt;nested structure&amp;lt;/b&amp;gt;. A nested structure is a structure containing one or more further structures. &lt;/P&gt;&lt;P&gt;A &amp;lt;b&amp;gt;deep structure&amp;lt;/b&amp;gt;. Deep structures are structures that contain an internal table as a component, either directly or indirectly). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is the sample program with nested structures&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT structure1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF name,&lt;/P&gt;&lt;P&gt;         title(5)       TYPE c,&lt;/P&gt;&lt;P&gt;         first_name(10) TYPE c,&lt;/P&gt;&lt;P&gt;         last_name(10)  TYPE c,&lt;/P&gt;&lt;P&gt;       END OF name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF mylist,&lt;/P&gt;&lt;P&gt;         client         TYPE name,&lt;/P&gt;&lt;P&gt;         number         TYPE i,&lt;/P&gt;&lt;P&gt;       END OF mylist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA list TYPE mylist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;list-client-title = 'Lord'.&lt;/P&gt;&lt;P&gt;list-client-first_name = 'Howard'.&lt;/P&gt;&lt;P&gt;list-client-last_name = 'Mac Duff'.&lt;/P&gt;&lt;P&gt;list-number = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE list-client-title.&lt;/P&gt;&lt;P&gt;WRITE list-client-first_name.&lt;/P&gt;&lt;P&gt;WRITE list-client-last_name.&lt;/P&gt;&lt;P&gt;WRITE / 'Number'.&lt;/P&gt;&lt;P&gt;WRITE list-number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if helpful,&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;LIJO JOHN&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 20 Aug 2007 08:25:58 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-20T08:25:58Z</dc:date>
    <item>
      <title>nested structures</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/nested-structures/m-p/2644019#M608891</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi... can anybody provide ne with a code sample that use nested structures&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Aug 2007 07:54:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/nested-structures/m-p/2644019#M608891</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-20T07:54:42Z</dc:date>
    </item>
    <item>
      <title>Re: nested structures</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/nested-structures/m-p/2644020#M608892</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;Below code give u the example of nested structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT Structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF name,&lt;/P&gt;&lt;P&gt;         title(5)       TYPE c,&lt;/P&gt;&lt;P&gt;         first_name(10) TYPE c,&lt;/P&gt;&lt;P&gt;         last_name(10)  TYPE c,&lt;/P&gt;&lt;P&gt;       END OF name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF mylist,&lt;/P&gt;&lt;P&gt;         client         TYPE name,&lt;/P&gt;&lt;P&gt;         number         TYPE i,&lt;/P&gt;&lt;P&gt;       END OF mylist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA list TYPE mylist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;list-client-title = 'Lord'.&lt;/P&gt;&lt;P&gt;list-client-first_name = 'Howard'.&lt;/P&gt;&lt;P&gt;list-client-last_name = 'Mac Duff'.&lt;/P&gt;&lt;P&gt;list-number = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE list-client-title.&lt;/P&gt;&lt;P&gt;WRITE list-client-first_name.&lt;/P&gt;&lt;P&gt;WRITE list-client-last_name.&lt;/P&gt;&lt;P&gt;WRITE / 'Number'.&lt;/P&gt;&lt;P&gt;WRITE list-number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if helpfull.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anees&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Aug 2007 08:12:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/nested-structures/m-p/2644020#M608892</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-20T08:12:47Z</dc:date>
    </item>
    <item>
      <title>Re: nested structures</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/nested-structures/m-p/2644021#M608893</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The structure of a data object can be an &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;elementary field, a &lt;/P&gt;&lt;P&gt;structure, or an &lt;/P&gt;&lt;P&gt;internal table.&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Structures and internal tables are complex data obejcts. Since it is possible to combine structures and internal tables in any way, we can can also make a general distinction between different types of structures, internal tables, and data structures. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A structure can be: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A &amp;lt;b&amp;gt;simple structure&amp;lt;/b&amp;gt; (as opposed to complex structures). A simple structure is a structure with elementary components. &lt;/P&gt;&lt;P&gt;A &amp;lt;b&amp;gt;nested structure&amp;lt;/b&amp;gt;. A nested structure is a structure containing one or more further structures. &lt;/P&gt;&lt;P&gt;A &amp;lt;b&amp;gt;deep structure&amp;lt;/b&amp;gt;. Deep structures are structures that contain an internal table as a component, either directly or indirectly). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is the sample program with nested structures&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT structure1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF name,&lt;/P&gt;&lt;P&gt;         title(5)       TYPE c,&lt;/P&gt;&lt;P&gt;         first_name(10) TYPE c,&lt;/P&gt;&lt;P&gt;         last_name(10)  TYPE c,&lt;/P&gt;&lt;P&gt;       END OF name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF mylist,&lt;/P&gt;&lt;P&gt;         client         TYPE name,&lt;/P&gt;&lt;P&gt;         number         TYPE i,&lt;/P&gt;&lt;P&gt;       END OF mylist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA list TYPE mylist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;list-client-title = 'Lord'.&lt;/P&gt;&lt;P&gt;list-client-first_name = 'Howard'.&lt;/P&gt;&lt;P&gt;list-client-last_name = 'Mac Duff'.&lt;/P&gt;&lt;P&gt;list-number = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE list-client-title.&lt;/P&gt;&lt;P&gt;WRITE list-client-first_name.&lt;/P&gt;&lt;P&gt;WRITE list-client-last_name.&lt;/P&gt;&lt;P&gt;WRITE / 'Number'.&lt;/P&gt;&lt;P&gt;WRITE list-number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if helpful,&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;LIJO JOHN&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Aug 2007 08:25:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/nested-structures/m-p/2644021#M608893</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-20T08:25:58Z</dc:date>
    </item>
    <item>
      <title>Re: nested structures</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/nested-structures/m-p/2644022#M608894</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why would you want to use nested structures? That's a quagmire you won't get out of. Unless you have a very specific NEED for it, don't bother with them.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Aug 2007 08:35:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/nested-structures/m-p/2644022#M608894</guid>
      <dc:creator>GuyF</dc:creator>
      <dc:date>2007-08-20T08:35:17Z</dc:date>
    </item>
  </channel>
</rss>

