<?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 types declaration in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/types-declaration/m-p/2412796#M538331</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;Please see the following declaration,&lt;/P&gt;&lt;P&gt;TYPES :BEGIN OF WA_ADMN_MAS.&lt;/P&gt;&lt;P&gt;TYPES :SEL TYPE CROSS-TYPE.&lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE ZTRST_ADMN_MAS.&lt;/P&gt;&lt;P&gt;TYPES :END OF WA_ADMN_MAS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;why did they write TYPES :SEL TYPE CROSS-TYPE.&lt;/P&gt;&lt;P&gt;what is the use of the statement.&lt;/P&gt;&lt;P&gt;please revert backas soon as possible&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; regards,&lt;/P&gt;&lt;P&gt;Kirthi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 25 Jun 2007 14:04:28 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-25T14:04:28Z</dc:date>
    <item>
      <title>types declaration</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/types-declaration/m-p/2412796#M538331</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;Please see the following declaration,&lt;/P&gt;&lt;P&gt;TYPES :BEGIN OF WA_ADMN_MAS.&lt;/P&gt;&lt;P&gt;TYPES :SEL TYPE CROSS-TYPE.&lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE ZTRST_ADMN_MAS.&lt;/P&gt;&lt;P&gt;TYPES :END OF WA_ADMN_MAS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;why did they write TYPES :SEL TYPE CROSS-TYPE.&lt;/P&gt;&lt;P&gt;what is the use of the statement.&lt;/P&gt;&lt;P&gt;please revert backas soon as possible&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; regards,&lt;/P&gt;&lt;P&gt;Kirthi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jun 2007 14:04:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/types-declaration/m-p/2412796#M538331</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-25T14:04:28Z</dc:date>
    </item>
    <item>
      <title>Re: types declaration</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/types-declaration/m-p/2412797#M538332</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What they are defining here is that the structure should have all fields of ZTRST_ADMN_MAS as well as another field call SEL.  Most likely this SEL field is the selection handling field for maybe a table control or ALV grid.  &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>Mon, 25 Jun 2007 14:07:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/types-declaration/m-p/2412797#M538332</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-06-25T14:07:56Z</dc:date>
    </item>
    <item>
      <title>Re: types declaration</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/types-declaration/m-p/2412798#M538333</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kirti,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TYPES :SEL TYPE CROSS-TYPE.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; denotes declaring a variable which is of the type Field:&amp;lt;b&amp;gt;TYPE&amp;lt;/b&amp;gt; from Table:&amp;lt;b&amp;gt;CROSS&amp;lt;/b&amp;gt;. It is basically a Single-Character Indicator.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Aneesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jun 2007 14:10:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/types-declaration/m-p/2412798#M538333</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-25T14:10:04Z</dc:date>
    </item>
    <item>
      <title>Re: types declaration</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/types-declaration/m-p/2412799#M538334</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;Because it added a new field, not included in dictionary structure (or table) ZTRST_ADMN_MAS, in the type defination. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When the INCLUDE STRUCTURE is used to declare a structure, the first statament has to end with a point, so or you write:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TYPES : BEGIN OF WA_ADMN_MAS.
TYPES : SEL TYPE CROSS-TYPE.
                INCLUDE STRUCTURE ZTRST_ADMN_MAS.
TYPES : END OF WA_ADMN_MAS.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TYPES : BEGIN OF WA_ADMN_MAS,
                SEL TYPE CROSS-TYPE.
                INCLUDE STRUCTURE ZTRST_ADMN_MAS.
TYPES : END OF WA_ADMN_MAS.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jun 2007 14:14:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/types-declaration/m-p/2412799#M538334</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-25T14:14:12Z</dc:date>
    </item>
  </channel>
</rss>

