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

slis pools?

Former Member
0 Likes
604

hai Gurus,

when we go with standard type pools - KKBLO,(as we generally go with SLIS pools.) .

thanks in advance

Praveen

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
564

Hi Praveen,

Yes KKBLO can be used,

KKBLO - Group of types for dynamic expenditure for list

SLIS - Global types for generic cunning components

kkblo is also a type group which can be used to scrool down options in list, to change colors, to mark a column in alv , do other minor operations in alv..

for instance we can use

ROWNO_CHANGE(1) TYPE C, " number of rows changeable

NO_STATIC_SUBTOT,

COLORS TYPE KKBLO_COLTYPES, " description of colors

SUPPRESS_DYNPRO(1) TYPE C, " no call screen

INTERNET_PREPARE(1) TYPE C, " for processing via internet

INTERFACE_COMPLETE(1) TYPE C, " just display.

NO_FILTER_CONFIRM(1) TYPE C, " filter on cell without confirm.

in our work area and do changes using this type group..

slis can be used to display header values in alv grid display..

we have SLIS_T_FIELDCAT_ALV for internal table declaration

and SLIS_FIELDCAT_ALV for work area declaration

wa_fc-col_pos = 2.

wa_fc-fieldname = 'WERKS'.

wa_fc-tabname = 'IT_MM'.

wa_fc-ref_fieldname ='WERKS'.

wa_fc-ref_tabname = 'MARC'.

wa_fc-hotspot = 'X'.

APPEND wa_fc TO it_fc.

CLEAR wa_fc.

using this simple code repeatedly for all fields we can get the field catalog..

mention the fieldcatalog internal table name in alv module.

hope u got idea of wat kkblo and slis is used for

<b>Kindly Reward points if you found this reply helpful</b>,

Cheers,

Chaitanya.

3 REPLIES 3
Read only

naimesh_patel
Active Contributor
0 Likes
564

We use then when we need to use the predefined TYPES which are avaliable in the existing TYPE POOL.

Regards,

Naimesh Patel

Read only

Former Member
0 Likes
564

SLIS and KKBLO are type groups for displaying ALV grids .

SLIS : it is global type of general list type groups .

KKBLO : Type of dynamic list type group .

kkblo is also a type group which can be used to scroll down options in list, to change colors, to mark a column in alv , do other minor operations in alv..

Read only

Former Member
0 Likes
565

Hi Praveen,

Yes KKBLO can be used,

KKBLO - Group of types for dynamic expenditure for list

SLIS - Global types for generic cunning components

kkblo is also a type group which can be used to scrool down options in list, to change colors, to mark a column in alv , do other minor operations in alv..

for instance we can use

ROWNO_CHANGE(1) TYPE C, " number of rows changeable

NO_STATIC_SUBTOT,

COLORS TYPE KKBLO_COLTYPES, " description of colors

SUPPRESS_DYNPRO(1) TYPE C, " no call screen

INTERNET_PREPARE(1) TYPE C, " for processing via internet

INTERFACE_COMPLETE(1) TYPE C, " just display.

NO_FILTER_CONFIRM(1) TYPE C, " filter on cell without confirm.

in our work area and do changes using this type group..

slis can be used to display header values in alv grid display..

we have SLIS_T_FIELDCAT_ALV for internal table declaration

and SLIS_FIELDCAT_ALV for work area declaration

wa_fc-col_pos = 2.

wa_fc-fieldname = 'WERKS'.

wa_fc-tabname = 'IT_MM'.

wa_fc-ref_fieldname ='WERKS'.

wa_fc-ref_tabname = 'MARC'.

wa_fc-hotspot = 'X'.

APPEND wa_fc TO it_fc.

CLEAR wa_fc.

using this simple code repeatedly for all fields we can get the field catalog..

mention the fieldcatalog internal table name in alv module.

hope u got idea of wat kkblo and slis is used for

<b>Kindly Reward points if you found this reply helpful</b>,

Cheers,

Chaitanya.