<?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 structure in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/nested-structure/m-p/1489238#M227890</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt; TYPES MYTYPE TYPE STRUCT1-STRUCT2-COL2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt; TYPES MYTYPE TYPE i.&lt;/P&gt;&lt;P&gt;both are same. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here you are defining one data type MYTYPE OF type Integer.&lt;/P&gt;&lt;P&gt;first one is defining using with the existing datatype STRUCT1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and the second is directly defining with basic datatype I&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;srikanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 03 Aug 2006 13:42:44 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-08-03T13:42:44Z</dc:date>
    <item>
      <title>Nested structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/nested-structure/m-p/1489233#M227885</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can any one of you clarify this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF STRUCT1.&lt;/P&gt;&lt;P&gt;             COLI TYPE I,&lt;/P&gt;&lt;P&gt;             BEGIN OF STRUCT OF STRUCT2,   &lt;/P&gt;&lt;P&gt;                   COL1 TYPE I,&lt;/P&gt;&lt;P&gt;                   COL2 TYPE I,&lt;/P&gt;&lt;P&gt;             END OF STRUCT 2,&lt;/P&gt;&lt;P&gt;       END OF STRUCT1.&lt;/P&gt;&lt;P&gt;TYPES MYTYPE TYPE STRUCT1-STRUCT2-COL2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please clarify why the last TYPES statement is used and how it works?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Aug 2006 13:35:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/nested-structure/m-p/1489233#M227885</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-03T13:35:33Z</dc:date>
    </item>
    <item>
      <title>Re: Nested structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/nested-structure/m-p/1489234#M227886</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;    the second types statement is used to define your own object type( which refers to &amp;lt;b&amp;gt;col2&amp;lt;/b&amp;gt; field of the &amp;lt;b&amp;gt;struct2&amp;lt;/b&amp;gt; which is defined in &amp;lt;b&amp;gt;struct1&amp;lt;/b&amp;gt;). &lt;/P&gt;&lt;P&gt;.&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;Ashok P&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Ashok Parupalli&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Aug 2006 13:37:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/nested-structure/m-p/1489234#M227886</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-03T13:37:37Z</dc:date>
    </item>
    <item>
      <title>Re: Nested structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/nested-structure/m-p/1489235#M227887</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In this case you are defining MYTYPE like the COL2 field of the STRUCT2 which is defined in STRUCT1. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Aug 2006 13:38:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/nested-structure/m-p/1489235#M227887</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-08-03T13:38:42Z</dc:date>
    </item>
    <item>
      <title>Re: Nested structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/nested-structure/m-p/1489236#M227888</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vamsi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Strange declaration in my opinion :).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think the last statement only declare a type MYTYPE that is only a type I (the type of STRUCT1-STRUCT2-COL2)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sylvain&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Aug 2006 13:39:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/nested-structure/m-p/1489236#M227888</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-03T13:39:45Z</dc:date>
    </item>
    <item>
      <title>Re: Nested structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/nested-structure/m-p/1489237#M227889</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi vamshi,&lt;/P&gt;&lt;P&gt; That type statement is for defining as many structures as you want of the same type declared above...&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Aug 2006 13:41:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/nested-structure/m-p/1489237#M227889</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-03T13:41:10Z</dc:date>
    </item>
    <item>
      <title>Re: Nested structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/nested-structure/m-p/1489238#M227890</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt; TYPES MYTYPE TYPE STRUCT1-STRUCT2-COL2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt; TYPES MYTYPE TYPE i.&lt;/P&gt;&lt;P&gt;both are same. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here you are defining one data type MYTYPE OF type Integer.&lt;/P&gt;&lt;P&gt;first one is defining using with the existing datatype STRUCT1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and the second is directly defining with basic datatype I&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;srikanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Aug 2006 13:42:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/nested-structure/m-p/1489238#M227890</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-03T13:42:44Z</dc:date>
    </item>
  </channel>
</rss>

