‎2007 Dec 14 4:36 AM
hai Gurus,
when we go with standard type pools - KKBLO,(as we generally go with SLIS pools.) .
thanks in advance
Praveen
‎2007 Dec 14 8:33 AM
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.
‎2007 Dec 14 4:42 AM
We use then when we need to use the predefined TYPES which are avaliable in the existing TYPE POOL.
Regards,
Naimesh Patel
‎2007 Dec 14 4:57 AM
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..
‎2007 Dec 14 8:33 AM
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.