<?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: Regarding type group in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-type-group/m-p/2476962#M557661</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;lt;b&amp;gt;Type Groups&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Type groups or type pools are created using the ABAP Dictionary tool and are introduced with the TYPE-POOL statement. They may not contain any screens of their own or any processing blocks. Type groups are exclusively used as containers for global data types which can be made visible in any ABAP program using the TYPE-POOLS statement. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPE-POOL &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Basic form&lt;/P&gt;&lt;P&gt;TYPE-POOL typepool. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect&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;Example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPE-POOL ABCDE.&lt;/P&gt;&lt;P&gt;TYPES: ABCDE_PACKED TYPE P,&lt;/P&gt;&lt;P&gt;       ABCDE_INT    TYPE I.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPE-POOLS &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Basic form&lt;/P&gt;&lt;P&gt;TYPE-POOLS typepool. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect&lt;/P&gt;&lt;P&gt;Includes the types and constants of a type group. If the type group typepool has already been included, the statement is ignored. You can only maintain a type group via the ABAP/4 Dictionary (using Transaction SE11 ). You introduce a type group with the TYPE-POOL statement. Since the types and constants specified in a type group have global validity, you cannot use the statement within a FORM or FUNCTION . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPE-POOLS VERI1.&lt;/P&gt;&lt;P&gt;DATA X TYPE VERI1_TYP1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward  points if it is usefull ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Girish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 25 Jun 2007 12:07:39 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-25T12:07:39Z</dc:date>
    <item>
      <title>Regarding type group</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-type-group/m-p/2476958#M557657</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Friends please help me on what is type group urgently.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jun 2007 10:14:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-type-group/m-p/2476958#M557657</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-25T10:14:46Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding type group</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-type-group/m-p/2476959#M557658</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 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;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;type group is a group where all diiferent types are defined.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for example ..go to se11-&amp;gt;in type group type SLIS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SLIS is a type group where you will find all the related type&lt;/P&gt;&lt;P&gt;these type group could related to a structure or any type which is define in it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for example:&lt;/P&gt;&lt;P&gt;types: SLIS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : FIELDCAT TYPE SLIS_T_FIELDCAT_ALV WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;W_FIELDCAT LIKE LINE OF FIELDCAT,&lt;/P&gt;&lt;P&gt;GD_TAB_GROUP TYPE SLIS_T_SP_GROUP_ALV WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;GD_LAYOUT TYPE SLIS_LAYOUT_ALV,&lt;/P&gt;&lt;P&gt;GD_EVENTS TYPE SLIS_T_EVENT,&lt;/P&gt;&lt;P&gt;GD_SORT TYPE SLIS_T_SORTINFO_ALV,&lt;/P&gt;&lt;P&gt;GS_PRINT TYPE SLIS_PRINT_ALV,&lt;/P&gt;&lt;P&gt;GD_REPID LIKE SY-REPID. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check out 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;&amp;lt;b&amp;gt;Reward is useful.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;All the best&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jun 2007 10:18:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-type-group/m-p/2476959#M557658</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-25T10:18:05Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding type group</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-type-group/m-p/2476960#M557659</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi uday,&lt;/P&gt;&lt;P&gt;   u can go thro this link.&lt;/P&gt;&lt;P&gt;&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;Regards...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Arun.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jun 2007 10:26:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-type-group/m-p/2476960#M557659</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-25T10:26:54Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding type group</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-type-group/m-p/2476961#M557660</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;good&lt;/P&gt;&lt;P&gt;&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;thanks&lt;/P&gt;&lt;P&gt;mrutyun^&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jun 2007 11:37:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-type-group/m-p/2476961#M557660</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-25T11:37:00Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding type group</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-type-group/m-p/2476962#M557661</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;lt;b&amp;gt;Type Groups&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Type groups or type pools are created using the ABAP Dictionary tool and are introduced with the TYPE-POOL statement. They may not contain any screens of their own or any processing blocks. Type groups are exclusively used as containers for global data types which can be made visible in any ABAP program using the TYPE-POOLS statement. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPE-POOL &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Basic form&lt;/P&gt;&lt;P&gt;TYPE-POOL typepool. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect&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;Example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPE-POOL ABCDE.&lt;/P&gt;&lt;P&gt;TYPES: ABCDE_PACKED TYPE P,&lt;/P&gt;&lt;P&gt;       ABCDE_INT    TYPE I.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPE-POOLS &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Basic form&lt;/P&gt;&lt;P&gt;TYPE-POOLS typepool. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect&lt;/P&gt;&lt;P&gt;Includes the types and constants of a type group. If the type group typepool has already been included, the statement is ignored. You can only maintain a type group via the ABAP/4 Dictionary (using Transaction SE11 ). You introduce a type group with the TYPE-POOL statement. Since the types and constants specified in a type group have global validity, you cannot use the statement within a FORM or FUNCTION . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPE-POOLS VERI1.&lt;/P&gt;&lt;P&gt;DATA X TYPE VERI1_TYP1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward  points if it is usefull ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Girish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jun 2007 12:07:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-type-group/m-p/2476962#M557661</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-25T12:07:39Z</dc:date>
    </item>
  </channel>
</rss>

