<?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: type pools in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/type-pools/m-p/2181438#M463948</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;TYPE-POOLS,TYPES, TYPE-POOL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES----&lt;/P&gt;&lt;HR originaltext="--------" /&gt;&lt;P&gt; USER DEFINED DATATYPES ARE DECLARED WITH TYPES STATEMENT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPE-POOL----&lt;/P&gt;&lt;HR originaltext="---------" /&gt;&lt;P&gt; IT IS A PROGRAM WITH A COLLECTION OF TYPES STATEMENTS. CAN BE CREATED IN DICTIONARY&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPE-POOLS----&lt;/P&gt;&lt;HR originaltext="------" /&gt;&lt;P&gt;IT IS A COLLECTION OF TYPE-POOL s.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in an ABAP Program we use TYPE-POOLS statement which is a collection of different TYPE-POOL s&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ex: TYPE-POOLS : ICON, SLIS etc &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES POOLS is group (library) of type, it's defined in dictionary and in this way a type needs to be declared only once in type pools.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you want to use a type of a certains type pools, you only have to indicate the type pools without to declare the type in your program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example when you create an ALV program, all types you need to use are defined in types pool SLIS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The objects that you don't want to create in SE11 but want a single place where you can declare them together will be done in TYPE POOLs. The best example is SLIS where you have declared all the TYPES that are required to execute a ALV REPORT using the REUSE functions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this way you define your types only once and then you can use them everytime you need:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPE-POOLS SLIS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: GT_FIELDCAT TYPE SLIS_T_FIELDCAT_ALV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The type SLIS_T_FIELDCAT_ALV is defined in type pools SLIS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this info would be helpful to you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kumar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 04 May 2007 07:18:43 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-04T07:18:43Z</dc:date>
    <item>
      <title>type pools</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/type-pools/m-p/2181432#M463942</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi can u please tell me what is a type pools? like i came across one called&lt;/P&gt;&lt;P&gt;TYPE-POOLS: SLIS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 May 2007 07:10:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/type-pools/m-p/2181432#M463942</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-04T07:10:58Z</dc:date>
    </item>
    <item>
      <title>Re: type pools</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/type-pools/m-p/2181433#M463943</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 tpool. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;Declaring global data types and constants from a type group. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The TYPE-POOLS statement declares the data types and constants of type group tpool You can specify it in the global data declarations of an ABAP program or in the declaration section of a class or interface. The data types and constants of the type group are visible as of this statement in the current context. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Notes &lt;/P&gt;&lt;P&gt;If the declared type group tpool integrates a further type group with the TYPE-POOLS statement, its data types and constants are also declared. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;,,Data types declared using type groups cover ABAP Dictionary data types of the same name. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example &lt;/P&gt;&lt;P&gt;Declaration of the predefined type group abap. By referring to the table type abap_func_parmbind_tab from the type group abap, the system declares an internal table parameter_tab for the dynamic parameter transfer to function modules. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPE-POOLS abap. &lt;/P&gt;&lt;P&gt;DATA parameter_tab TYPE abap_func_parmbind_tab. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if useful&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 May 2007 07:12:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/type-pools/m-p/2181433#M463943</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-04T07:12:53Z</dc:date>
    </item>
    <item>
      <title>Re: type pools</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/type-pools/m-p/2181434#M463944</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;TYPE-POOLS &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Syntax &lt;/P&gt;&lt;P&gt;TYPE-POOLS tpool. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;In order to use the definitions of a type group, you have to integrate the type group into the program. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The TYPE-POOLS statement integrates the type group tpool into the current context. You can specify it in the global data declarations of an ABAP program or in the declaration section of a class or interface. The data types and constants of the type group are visible as of this statement in the current context. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note &lt;/P&gt;&lt;P&gt;If the integrated type group tpool integrates a further type group with the TYPE-POOLS statement, this new type group is also integrated into the program. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example &lt;/P&gt;&lt;P&gt;Integrating the predefined type group abap. By referring to the table type abap_func_parmbind_tab from the type group abap, the system declares an internal table parameter_tab for the dynamic parameter transfer to function modules. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPE-POOLS abap. &lt;/P&gt;&lt;P&gt;DATA parameter_tab TYPE abap_func_parmbind_tab.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 May 2007 07:13:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/type-pools/m-p/2181434#M463944</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-04T07:13:09Z</dc:date>
    </item>
    <item>
      <title>Re: type pools</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/type-pools/m-p/2181435#M463945</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-groups : slis,vrm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check these type pools for clear and better understandality.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sreeram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 May 2007 07:13:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/type-pools/m-p/2181435#M463945</guid>
      <dc:creator>sreeramkumar_madisetty</dc:creator>
      <dc:date>2007-05-04T07:13:42Z</dc:date>
    </item>
    <item>
      <title>Re: type pools</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/type-pools/m-p/2181436#M463946</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 is a place where u can store the type declarations globally which can be used in your ABAP program. Type-pools SLIS Stores all the ALV related Type definitions.&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;Kasi S&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 May 2007 07:13:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/type-pools/m-p/2181436#M463946</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-04T07:13:45Z</dc:date>
    </item>
    <item>
      <title>Re: type pools</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/type-pools/m-p/2181437#M463947</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;in type pools we can define constants and variables globally.&lt;/P&gt;&lt;P&gt;these variables and constants we can use in any of our programs,class builder,function builder,....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also check this link&lt;/P&gt;&lt;P&gt;&lt;A href="http://sap.niraj.tripod.com/id26.html" target="test_blank"&gt;http://sap.niraj.tripod.com/id26.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds,&lt;/P&gt;&lt;P&gt;bharat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 May 2007 07:15:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/type-pools/m-p/2181437#M463947</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-04T07:15:20Z</dc:date>
    </item>
    <item>
      <title>Re: type pools</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/type-pools/m-p/2181438#M463948</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;TYPE-POOLS,TYPES, TYPE-POOL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES----&lt;/P&gt;&lt;HR originaltext="--------" /&gt;&lt;P&gt; USER DEFINED DATATYPES ARE DECLARED WITH TYPES STATEMENT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPE-POOL----&lt;/P&gt;&lt;HR originaltext="---------" /&gt;&lt;P&gt; IT IS A PROGRAM WITH A COLLECTION OF TYPES STATEMENTS. CAN BE CREATED IN DICTIONARY&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPE-POOLS----&lt;/P&gt;&lt;HR originaltext="------" /&gt;&lt;P&gt;IT IS A COLLECTION OF TYPE-POOL s.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in an ABAP Program we use TYPE-POOLS statement which is a collection of different TYPE-POOL s&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ex: TYPE-POOLS : ICON, SLIS etc &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES POOLS is group (library) of type, it's defined in dictionary and in this way a type needs to be declared only once in type pools.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you want to use a type of a certains type pools, you only have to indicate the type pools without to declare the type in your program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example when you create an ALV program, all types you need to use are defined in types pool SLIS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The objects that you don't want to create in SE11 but want a single place where you can declare them together will be done in TYPE POOLs. The best example is SLIS where you have declared all the TYPES that are required to execute a ALV REPORT using the REUSE functions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this way you define your types only once and then you can use them everytime you need:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPE-POOLS SLIS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: GT_FIELDCAT TYPE SLIS_T_FIELDCAT_ALV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The type SLIS_T_FIELDCAT_ALV is defined in type pools SLIS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this info would be helpful to you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kumar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 May 2007 07:18:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/type-pools/m-p/2181438#M463948</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-04T07:18:43Z</dc:date>
    </item>
  </channel>
</rss>

