Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Type group

Former Member
0 Likes
494

Hi all,

Type group means what how it can used in a code can anyone explain with some example.

Thanks.

4 REPLIES 4
Read only

Former Member
0 Likes
470

Hi,

type groups will contains the definition of variables,constants that we use most of the time.for example see the type pools SLIS in se11.this will be useful to work with ALv concept.

for more info check this link

http://help.sap.com/saphelp_nw2004s/helpdata/en/fc/eb3138358411d1829f0000e829fbfe/content.htm

rgds,

bharat.

Read only

Former Member
0 Likes
470

TYPE GROUP consists of all pre-defined data types and constants.

the purpose of type groups is reusable concept, so that we can improve the performance.

for examaple:

SLIS.

If u want to see the slis go to SE11 , in type-group give slis.

u can find all predefined data types which we genarally use in ALV reporting.

Read only

Former Member
0 Likes
470

type group is a group where all diiferent types are defined.

for example ..go to se11->in type group type SLIS.

SLIS is a type group where you will find all the related type

these type group could related to a structure or any type which is define in it.

for example:

types: SLIS.

DATA : FIELDCAT TYPE <b>SLIS_T_FIELDCAT_ALV</b> WITH HEADER LINE,

W_FIELDCAT LIKE LINE OF FIELDCAT,

GD_TAB_GROUP TYPE <b>SLIS_T_SP_GROUP_ALV</b> WITH HEADER LINE,

GD_LAYOUT TYPE <b>SLIS_LAYOUT_ALV</b>,

GD_EVENTS TYPE <b>SLIS_T_EVENT</b>,

GD_SORT TYPE SLIS_T_SORTINFO_ALV,

GS_PRINT TYPE SLIS_PRINT_ALV,

GD_REPID LIKE SY-REPID.

Read only

Former Member