<?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: Difference between TYPE-POOL and TYPE-POOLS statements!!!! in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-type-pool-and-type-pools-statements/m-p/2316747#M508141</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ramesh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If u want to know more about ALV then go for tcode LIBS&lt;/P&gt;&lt;P&gt;and once check that pdf file then u will come to know a clear knowledge even though if u have any doubt then u can ask me any time &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is sample code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL FUNCTION 'REUSE_ALV_HIERSEQ_LIST_DISPLAY'
         EXPORTING
              I_CALLBACK_PROGRAM = REPID
              IS_LAYOUT          = H_LAYOUT
              IT_FIELDCAT        = HFIELD
              IS_KEYINFO         = GS_KEYINFO
              I_TABNAME_HEADER   = 'HDATA'
             I_TABNAME_ITEM     = 'IDATA'
              IT_EVENTS          = GT_HEVENTS
         TABLES
              T_OUTTAB_HEADER    = HDATA
              T_OUTTAB_ITEM      = IDATA.

*  AFIELD-REF_TABNAME = ''.
  AFIELD-KEY = 'X'.                    "define field as key
  APPEND AFIELD TO XFIELD.
  AFIELD-TABNAME = 'IDATA'.
  APPEND AFIELD TO HFIELD.

 CLEAR AFIELD.
  L_COUNT = L_COUNT + 1.
  AFIELD-COL_POS = L_COUNT.
  AFIELD-FIELDNAME = 'AUZTV'.
 AFIELD-TABNAME = 'FINALTAB'.
*  AFIELD-REF_TABNAME = ''.
  AFIELD-KEY = 'X'.                    "define field as key
  APPEND AFIELD TO XFIELD.
  AFIELD-TABNAME = 'IDATA'.
  APPEND AFIELD TO HFIELD.





ENDFORM.



FORM ZEVENTS.
  CLEAR XS_EVENT.
  XS_EVENT-NAME = slis_ev_item_data_expand.
  XS_EVENT-FORM = 'ITEM_DATA_EXPAND'.
  APPEND XS_EVENT TO GT_HEVENTS.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Pavan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        pavan praveen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 22 May 2007 08:19:18 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-22T08:19:18Z</dc:date>
    <item>
      <title>Difference between TYPE-POOL and TYPE-POOLS statements!!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-type-pool-and-type-pools-statements/m-p/2316742#M508136</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;  Can any one give me an idea on the differences bw the statements Type-Pool and Type-Pools?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, i am planning to learn ALVs, so how can i proceed on this. Please advice...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ramesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 08:04:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-type-pool-and-type-pools-statements/m-p/2316742#M508136</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-22T08:04:22Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between TYPE-POOL and TYPE-POOLS statements!!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-type-pool-and-type-pools-statements/m-p/2316743#M508137</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;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Priyanka.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 08:06:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-type-pool-and-type-pools-statements/m-p/2316743#M508137</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-22T08:06:40Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between TYPE-POOL and TYPE-POOLS statements!!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-type-pool-and-type-pools-statements/m-p/2316744#M508138</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;for alvs&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapdevelopment.co.uk/reporting/alvhome.htm" target="test_blank"&gt;http://www.sapdevelopment.co.uk/reporting/alvhome.htm&lt;/A&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;P&gt;&lt;A href="http://www.sapdevelopment.co.uk/reporting/alv/alvlist.htm" target="test_blank"&gt;http://www.sapdevelopment.co.uk/reporting/alv/alvlist.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 08:07:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-type-pool-and-type-pools-statements/m-p/2316744#M508138</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-22T08:07:25Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between TYPE-POOL and TYPE-POOLS statements!!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-type-pool-and-type-pools-statements/m-p/2316745#M508139</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ramesh &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Give me your mail id i'll forward a nice matreial for alv &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rewards if helpfull&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards &lt;/P&gt;&lt;P&gt;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 08:11:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-type-pool-and-type-pools-statements/m-p/2316745#M508139</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-22T08:11:37Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between TYPE-POOL and TYPE-POOLS statements!!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-type-pool-and-type-pools-statements/m-p/2316746#M508140</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pavan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; This is my mail-id : ramesh_masetty@yahoo.co.in&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance for your help. Also give me some guidence on this, what are the mandatory statements for ALVs.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 08:14:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-type-pool-and-type-pools-statements/m-p/2316746#M508140</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-22T08:14:13Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between TYPE-POOL and TYPE-POOLS statements!!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-type-pool-and-type-pools-statements/m-p/2316747#M508141</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ramesh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If u want to know more about ALV then go for tcode LIBS&lt;/P&gt;&lt;P&gt;and once check that pdf file then u will come to know a clear knowledge even though if u have any doubt then u can ask me any time &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is sample code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL FUNCTION 'REUSE_ALV_HIERSEQ_LIST_DISPLAY'
         EXPORTING
              I_CALLBACK_PROGRAM = REPID
              IS_LAYOUT          = H_LAYOUT
              IT_FIELDCAT        = HFIELD
              IS_KEYINFO         = GS_KEYINFO
              I_TABNAME_HEADER   = 'HDATA'
             I_TABNAME_ITEM     = 'IDATA'
              IT_EVENTS          = GT_HEVENTS
         TABLES
              T_OUTTAB_HEADER    = HDATA
              T_OUTTAB_ITEM      = IDATA.

*  AFIELD-REF_TABNAME = ''.
  AFIELD-KEY = 'X'.                    "define field as key
  APPEND AFIELD TO XFIELD.
  AFIELD-TABNAME = 'IDATA'.
  APPEND AFIELD TO HFIELD.

 CLEAR AFIELD.
  L_COUNT = L_COUNT + 1.
  AFIELD-COL_POS = L_COUNT.
  AFIELD-FIELDNAME = 'AUZTV'.
 AFIELD-TABNAME = 'FINALTAB'.
*  AFIELD-REF_TABNAME = ''.
  AFIELD-KEY = 'X'.                    "define field as key
  APPEND AFIELD TO XFIELD.
  AFIELD-TABNAME = 'IDATA'.
  APPEND AFIELD TO HFIELD.





ENDFORM.



FORM ZEVENTS.
  CLEAR XS_EVENT.
  XS_EVENT-NAME = slis_ev_item_data_expand.
  XS_EVENT-FORM = 'ITEM_DATA_EXPAND'.
  APPEND XS_EVENT TO GT_HEVENTS.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Pavan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        pavan praveen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 08:19:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-type-pool-and-type-pools-statements/m-p/2316747#M508141</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-22T08:19:18Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between TYPE-POOL and TYPE-POOLS statements!!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-type-pool-and-type-pools-statements/m-p/2316748#M508142</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Priyanka,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;suppose if i want to create a type group in SE11. How can i create? also please let me know what ever i created in SE11, the same will be related to TYPE-POOL. whenever we want to use the same TYPE-POOL, we use the statement like TYPE-POOLS in our ABAP programs to include our own types.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so my understanding is, the differences bw type and type-pool, type is valid for particular program(like LOCAL) and type-pool is valid for all the programs(Like GLOBAL Declaration). so we can use type-pool which is defined in SE11, whereever and whenever we want. am i rite??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly advice...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 08:19:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-type-pool-and-type-pools-statements/m-p/2316748#M508142</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-22T08:19:52Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between TYPE-POOL and TYPE-POOLS statements!!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-type-pool-and-type-pools-statements/m-p/2316749#M508143</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;A Type Group allows for defining the non-predefined types and grouping them together. The type group is defined in the ABAP Dictionary and is centrally available for use in various programs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example, let us say you are using an ALV Grid in your program. You will have to define the field-catalog , layout etc., for the grid. You can simply include the type-group SLIS in your program and use the types required for these directly. You do not have to define the structures for these explicitly in your program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/people/mark.finnern/blog/2004/08/10/spread-the-love&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="45573"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="45272"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="44760"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="44600"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="44743"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="44749"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Priyanka.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 08:24:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-type-pool-and-type-pools-statements/m-p/2316749#M508143</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-22T08:24:15Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between TYPE-POOL and TYPE-POOLS statements!!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-type-pool-and-type-pools-statements/m-p/2316750#M508144</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Priya. I got it now.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 09:08:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-type-pool-and-type-pools-statements/m-p/2316750#M508144</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-22T09:08:15Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between TYPE-POOL and TYPE-POOLS statements!!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-type-pool-and-type-pools-statements/m-p/2316751#M508145</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot all for the help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 17:34:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-type-pool-and-type-pools-statements/m-p/2316751#M508145</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-22T17:34:48Z</dc:date>
    </item>
  </channel>
</rss>

