<?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/3463186#M832229</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&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. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SLIS is the type-pool for ALV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if it helps!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;ramya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 29 Feb 2008 07:38:44 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-29T07:38:44Z</dc:date>
    <item>
      <title>TYPE POOLS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/type-pools/m-p/3463185#M832228</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Frds&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Y we r useing TYPE POOLS in ALV.&lt;/P&gt;&lt;P&gt;where we can see the type pools in SAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Pari Vendhan.R&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Feb 2008 07:35:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/type-pools/m-p/3463185#M832228</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-29T07:35: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/3463186#M832229</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&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. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SLIS is the type-pool for ALV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if it helps!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;ramya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Feb 2008 07:38:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/type-pools/m-p/3463186#M832229</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-29T07:38:44Z</dc:date>
    </item>
    <item>
      <title>Re: TYPE POOLS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/type-pools/m-p/3463187#M832230</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 pool is a collection of pre defined data types..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Frequently used data types in programming are clubbed into a type pool so that if u write in ur code:&lt;/P&gt;&lt;P&gt;TYPE-POOLS: slis.&lt;/P&gt;&lt;P&gt;the declarations in SLIS will apply to ur code also..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SLIS contains data definitions for ALV structures &amp;amp; internal tables. so that u dont need to declare alv data everytime in ur program..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check out type pools: ICON, etc.. In SE11, type groups.. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We can use ABAP ALV LIST and GRID function modules to display Normal LIST and Hiearchical LISTS .&lt;/P&gt;&lt;P&gt;All the definitions TYPES and STRUCTURES and CONSTANTS are defined&lt;/P&gt;&lt;P&gt;in the TYPE-POOL 'SLIS' ,so it should be declared first.&lt;/P&gt;&lt;P&gt;TYPE-POOLS : 'SLIS' .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To display ALV LISTS the function module used are :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REUSE_ALV_LIST_DISPLAY "For Normal LIST&lt;/P&gt;&lt;P&gt;REUSE_ALV_HIERARCHICAL_LIST_DISPLAY "For Hierarchical LIST&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To display ALV GRID the function module used are :&lt;/P&gt;&lt;P&gt;REUSE_ALV_GRID_DISPLAY . "For GRID display&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The most important component of the ALV is the FIELDCATALOG which is of&lt;/P&gt;&lt;P&gt;TYPE SLIS_T_FIEDLCAT_ALV &lt;/P&gt;&lt;P&gt;or of&lt;/P&gt;&lt;P&gt;TYPE STANDARD TABLE OF SLIS_FIELDCAT_ALV .&lt;/P&gt;&lt;P&gt;The line items of the field catalog are of &lt;/P&gt;&lt;P&gt;TYPE SLIS_FIELDCAT_ALV . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this link.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapdevelopment.co.uk/reporting/alv/alvgrid.htm" target="test_blank"&gt;http://www.sapdevelopment.co.uk/reporting/alv/alvgrid.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Feb 2008 07:42:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/type-pools/m-p/3463187#M832230</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-29T07:42:08Z</dc:date>
    </item>
    <item>
      <title>Re: TYPE POOLS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/type-pools/m-p/3463188#M832231</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rajasekaran,&lt;/P&gt;&lt;P&gt;&lt;/P&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;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;Reward if helpful,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards ,&lt;/P&gt;&lt;P&gt;SreekarKadiri.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Feb 2008 07:47:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/type-pools/m-p/3463188#M832231</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-29T07:47:54Z</dc:date>
    </item>
    <item>
      <title>Re: TYPE POOLS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/type-pools/m-p/3463189#M832232</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for ur's information .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By &lt;/P&gt;&lt;P&gt;Pari&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Feb 2008 07:51:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/type-pools/m-p/3463189#M832232</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-29T07:51:08Z</dc:date>
    </item>
    <item>
      <title>Re: TYPE POOLS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/type-pools/m-p/3463190#M832233</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 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;1.Goto se11&lt;/P&gt;&lt;P&gt;2. data type : ur type-pool name&lt;/P&gt;&lt;P&gt;3. display.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example :SLIS. KKBLO etc....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REgards,&lt;/P&gt;&lt;P&gt;kavitha.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Feb 2008 09:03:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/type-pools/m-p/3463190#M832233</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-29T09:03:29Z</dc:date>
    </item>
    <item>
      <title>Re: TYPE POOLS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/type-pools/m-p/3463191#M832234</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI&lt;/P&gt;&lt;P&gt;u can see SLIS &lt;DEL&gt;-goto se11 transaction and in database table&lt;/DEL&gt;-give SLIS...u can see type pool.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Feb 2008 09:08:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/type-pools/m-p/3463191#M832234</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-29T09:08:58Z</dc:date>
    </item>
  </channel>
</rss>

