ALV_EXPORT_TO_BUFFER_KKBLO is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name ALV_EXPORT_TO_BUFFER_KKBLO into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
SKBB
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'ALV_EXPORT_TO_BUFFER_KKBLO' "Export buffer
EXPORTING
is_ltdxkey = " ltdxkey Key for LTDX
* i_langu = SY-LANGU " langu Language
it_fieldcat_kkblo = " kkblo_t_fieldcat
* i_fieldcat_kkblo_state = " char01 Character Field Length 1
* it_sort_kkblo = " kkblo_t_sortinfo
* i_sort_kkblo_state = " char01 Character Field Length 1
* it_filter_kkblo = " kkblo_t_filter
* is_layout_kkblo = " kkblo_layout
EXCEPTIONS
NO_KEY = 1 "
NO_EXPORT = 2 " Export was unsuccessful
. " ALV_EXPORT_TO_BUFFER_KKBLO
The ABAP code below is a full code listing to execute function module ALV_EXPORT_TO_BUFFER_KKBLO including all data declarations. The code uses the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the original method of declaring data variables up front. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8).
DATA(ld_is_ltdxkey) = 'Check type of data required'.
DATA(ld_i_langu) = 'Check type of data required'.
DATA(ld_it_fieldcat_kkblo) = 'Check type of data required'.
DATA(ld_i_fieldcat_kkblo_state) = 'Check type of data required'.
DATA(ld_it_sort_kkblo) = 'Check type of data required'.
DATA(ld_i_sort_kkblo_state) = 'Check type of data required'.
DATA(ld_it_filter_kkblo) = 'Check type of data required'.
DATA(ld_is_layout_kkblo) = 'Check type of data required'. . CALL FUNCTION 'ALV_EXPORT_TO_BUFFER_KKBLO' EXPORTING is_ltdxkey = ld_is_ltdxkey * i_langu = ld_i_langu it_fieldcat_kkblo = ld_it_fieldcat_kkblo * i_fieldcat_kkblo_state = ld_i_fieldcat_kkblo_state * it_sort_kkblo = ld_it_sort_kkblo * i_sort_kkblo_state = ld_i_sort_kkblo_state * it_filter_kkblo = ld_it_filter_kkblo * is_layout_kkblo = ld_is_layout_kkblo EXCEPTIONS NO_KEY = 1 NO_EXPORT = 2 . " ALV_EXPORT_TO_BUFFER_KKBLO
IF SY-SUBRC EQ 0. "All OK ELSEIF SY-SUBRC EQ 1. "Exception "Add code for exception here ELSEIF SY-SUBRC EQ 2. "Exception "Add code for exception here ENDIF.
The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.
DATA:
| ld_is_ltdxkey | TYPE LTDXKEY , |
| ld_i_langu | TYPE LANGU , |
| ld_it_fieldcat_kkblo | TYPE KKBLO_T_FIELDCAT , |
| ld_i_fieldcat_kkblo_state | TYPE CHAR01 , |
| ld_it_sort_kkblo | TYPE KKBLO_T_SORTINFO , |
| ld_i_sort_kkblo_state | TYPE CHAR01 , |
| ld_it_filter_kkblo | TYPE KKBLO_T_FILTER , |
| ld_is_layout_kkblo | TYPE KKBLO_LAYOUT . |
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name ALV_EXPORT_TO_BUFFER_KKBLO or its description.