<?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: how to create type pools in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-type-pools/m-p/4635473#M1091453</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;Pls check the f1 help in ur system.&lt;/P&gt;&lt;P&gt;It gives u  simple examples. Anyway,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Typepool falls under - Data types.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Data Types&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;You can define program-local data types in ABAP programs that can be used for typing or declaring additional data types and data objects according to validity and visibility. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The corresponding statements are: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. TYPE-POOLS &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.  TYPES &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3.  INCLUDE TYPE &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;TYPE-POOLS&lt;/STRONG&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;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;&lt;STRONG&gt;Example&lt;/STRONG&gt; &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;regards,&lt;/P&gt;&lt;P&gt;Padma&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Padmashree RamMaghenthar on Oct 13, 2008 11:18 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 13 Oct 2008 05:48:23 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-10-13T05:48:23Z</dc:date>
    <item>
      <title>how to create type pools</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-type-pools/m-p/4635470#M1091450</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a query like can we create custom "type pools". if yes, then what are the steps to create it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you in advance.&lt;/P&gt;&lt;P&gt;Samad.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Oct 2008 05:41:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-type-pools/m-p/4635470#M1091450</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-13T05:41:12Z</dc:date>
    </item>
    <item>
      <title>Re: how to create type pools</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-type-pools/m-p/4635471#M1091451</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The TYPE-POOL statement introduces a table group. &lt;/P&gt;&lt;P&gt;You can only maintain type groups in the ABAP Dictionary (Transaction SE11).  You may only define types and constants in a type group. The name of each type and constant must begin with the name of the type group followed by an underscore. You declare the types and constants of a type group using the TYPE-POOLS statement. &lt;/P&gt;&lt;P&gt;Example&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TYPE-POOL ABCDE. 
TYPES: ABCDE_PACKED TYPE P, 
       ABCDE_INT    TYPE I. &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Oct 2008 05:47:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-type-pools/m-p/4635471#M1091451</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-13T05:47:24Z</dc:date>
    </item>
    <item>
      <title>Re: how to create type pools</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-type-pools/m-p/4635472#M1091452</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;Yes,we can create the custom type pools.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just Goto se11&lt;/P&gt;&lt;P&gt;select TYPE GROUP then Custom name CREATE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then write the source code as per your requirements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can use this in your rogram by defining as&lt;/P&gt;&lt;P&gt;TYPE-POOLS Custom name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Oct 2008 05:48:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-type-pools/m-p/4635472#M1091452</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-13T05:48:18Z</dc:date>
    </item>
    <item>
      <title>Re: how to create type pools</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-type-pools/m-p/4635473#M1091453</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;Pls check the f1 help in ur system.&lt;/P&gt;&lt;P&gt;It gives u  simple examples. Anyway,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Typepool falls under - Data types.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Data Types&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;You can define program-local data types in ABAP programs that can be used for typing or declaring additional data types and data objects according to validity and visibility. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The corresponding statements are: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. TYPE-POOLS &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.  TYPES &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3.  INCLUDE TYPE &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;TYPE-POOLS&lt;/STRONG&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;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;&lt;STRONG&gt;Example&lt;/STRONG&gt; &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;regards,&lt;/P&gt;&lt;P&gt;Padma&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Padmashree RamMaghenthar on Oct 13, 2008 11:18 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Oct 2008 05:48:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-type-pools/m-p/4635473#M1091453</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-13T05:48:23Z</dc:date>
    </item>
    <item>
      <title>Re: how to create type pools</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-type-pools/m-p/4635474#M1091454</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Arif,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Welcome to SDN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Goto SE11 --&amp;gt; TYPE GROUP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in SE11 we have got and radiobutton call the TYPE GROUP , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;from there you can create a type group.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for reference yopu can check standard type groups&lt;/P&gt;&lt;P&gt;SLIS.&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;Kumar M.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Oct 2008 05:48:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-type-pools/m-p/4635474#M1091454</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-13T05:48:31Z</dc:date>
    </item>
    <item>
      <title>Re: how to create type pools</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-type-pools/m-p/4635475#M1091455</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;We can create TYPE GROUP in SE11.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can have a look on standard SAp type groups like SLIS, Icon where in you can define all your types.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanx.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Oct 2008 06:09:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-type-pools/m-p/4635475#M1091455</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-13T06:09:44Z</dc:date>
    </item>
    <item>
      <title>Re: how to create type pools</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-type-pools/m-p/4635476#M1091456</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes u can. Just go se11 n select type group radio button give it a name and defines ur types in it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It will look like this,&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;TYPE-POOL ZTest .     "Your type pool name&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Types: number  type n,&lt;/P&gt;&lt;P&gt;           name(40) type c.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Oct 2008 06:28:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-type-pools/m-p/4635476#M1091456</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-13T06:28:53Z</dc:date>
    </item>
    <item>
      <title>Re: how to create type pools</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-type-pools/m-p/4635477#M1091457</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;Some one know where exist the option to create a type group in the version 4.5? this option do not exist in the SE11, thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Nov 2009 22:39:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-type-pools/m-p/4635477#M1091457</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-20T22:39:28Z</dc:date>
    </item>
    <item>
      <title>Re: how to create type pools</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-type-pools/m-p/4635478#M1091458</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;Some one know where exist the option to create a type group in the version 4.5? this option do not exist in the SE11, thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Nov 2009 22:39:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-type-pools/m-p/4635478#M1091458</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-20T22:39:33Z</dc:date>
    </item>
  </channel>
</rss>

