<?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 group? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/types-group/m-p/3647086#M878310</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is type group and where it is used?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 16 Apr 2008 10:48:41 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-16T10:48:41Z</dc:date>
    <item>
      <title>Types group?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/types-group/m-p/3647086#M878310</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is type group and where it is used?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Apr 2008 10:48:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/types-group/m-p/3647086#M878310</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-16T10:48:41Z</dc:date>
    </item>
    <item>
      <title>Re: Types group?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/types-group/m-p/3647087#M878311</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;TYPE-POOLS tp&lt;/P&gt;&lt;P&gt;Type-pools are used to declare a type pool to be used in the program.The specified type pool should already exists in the ABAP DICTONARY(SE11) .Once the type pool has been declared we can use any of the constants and types declared in that type pool. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPE-POOL tp &lt;/P&gt;&lt;P&gt;Type-pool statement is used to create a type group in the ABAP dictionary.It is the first statement in the definition.The type group is used to declare constants and types and these must begin with the name of the type pool and underscore.&lt;/P&gt;&lt;P&gt;e.g. TYPE-POOL owntypes.&lt;/P&gt;&lt;P&gt;TYPES num TYPE P DECIMALS 2.&lt;/P&gt;&lt;P&gt;TYPES name(14) TYPE C.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To use these types in the abap program we have to use the statement&lt;/P&gt;&lt;P&gt;TYPE-POOLS .&lt;/P&gt;&lt;P&gt;e.g. TYPE-POOLS owntypes.&lt;/P&gt;&lt;P&gt;DATA customer TYPE owntypes_num.&lt;/P&gt;&lt;P&gt;DATA name TYPE owntypes_name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kumar(Reward if helpful).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Apr 2008 10:52:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/types-group/m-p/3647087#M878311</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-16T10:52:43Z</dc:date>
    </item>
    <item>
      <title>Re: Types group?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/types-group/m-p/3647088#M878312</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;&lt;STRONG&gt;&lt;EM&gt;Type group&lt;/EM&gt;&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;A type group is a Global Declaration area, where you can define the types which will be accessible across all the program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;Type group creation&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;goto transaction SE11.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select type group radio button.&lt;/P&gt;&lt;P&gt;Enter the name of the type group u want to copy.&lt;/P&gt;&lt;P&gt;then select the copy button on the application toolbar enter the name of the ztype group u want to create. Activate it.&lt;/P&gt;&lt;P&gt;That's it!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;Information on TYpe group:&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Before Release 4.5A, it was not possible to define standalone types in the ABAP Dictionary to which you could refer using a TYPEaddition in an ABAP program. It was only possible to refer to flat structures. Structures in programs corresponded to the structures of database tables or structures in the ABAP Dictionary. In ABAP programs, you could only refer to database tables and structures in the ABAP Dictionary using LIKE. It was, however, possible to refer to individual components of the Dictionary type. Complex local data types such as internal tables or deep structures had no equivalent in the ABAP Dictionary. The solution to this from Release 3.0 onwards was to use type groups. Type groups were based on the include technique, and allowed you to store any type definitions globally in the Dictionary by defining them using TYPES statements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The definition of a type group is a fragment of ABAP code which you enter in the ABAP Editor. The first statement for the type group pool is always:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPE-POOL pool.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After that, you define data types using the statement TYPES. It was also possible to define global constants using the CONSTANTS statement. All the names of these data types and constants must begin with the name of the type group and an underscore: pool_&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In an ABAP program, you must declare a type group as follows before you can use it:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPE-POOLS pool.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This statement allows you to use all the data types and constants defined in the type group pool in your program. You can use several type groups in the same program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note:&lt;/P&gt;&lt;P&gt;As of release 6.40, you can also define data types and constants in the public visibility area of global classes, by which type groups can be completely replaced. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Introduces a type group. You can only maintain a type group via the ABAP/4 Dictionary (using Transaction SE11 ). The name typepool must match the name in the ABAP/4 Dictionary . You can only define types and constants in type groups. The names of all these types and constants must begin with the name of the type group and an underscore. &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;Raj.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Apr 2008 10:53:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/types-group/m-p/3647088#M878312</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-16T10:53:02Z</dc:date>
    </item>
    <item>
      <title>Re: Types group?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/types-group/m-p/3647089#M878313</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi they r used in the &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;type groups will contains the definition of variables,constants that we use most of the time.for example see the type pools SLIS in se11.this will be useful to work with ALv concept.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for more info check this link&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/fc/eb3138358411d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/fc/eb3138358411d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_46c/helpdata/en/fc/eb3138358411d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_46c/helpdata/en/fc/eb3138358411d1829f0000e829fbfe/content.htm&lt;/A&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;venkat&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: venkat  appikonda on Apr 16, 2008 12:55 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Apr 2008 10:53:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/types-group/m-p/3647089#M878313</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-16T10:53:41Z</dc:date>
    </item>
    <item>
      <title>Re: Types group?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/types-group/m-p/3647090#M878314</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;You can define data types in a type group in the ABAP/4 Dictionary instead of defining them within an ABAP/4 program. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The type group name in the ABAP/4 Dictionary has a maximum of 5 characters. Type names within type group &amp;lt;typepool&amp;gt; must begin with &amp;lt;typepool&amp;gt; followed by an underscore. &lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;The types in a type group must be declared in ABAP/4 programs with the TYPE-POOLS command. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex : We will use type-pools for building ALV reports and etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sriram Ponna.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Apr 2008 10:55:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/types-group/m-p/3647090#M878314</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-16T10:55:12Z</dc:date>
    </item>
  </channel>
</rss>

