SAP LVC_TRANSFER_FROM_KKBLO Function Module for
LVC_TRANSFER_FROM_KKBLO is a standard lvc transfer from kkblo SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.
See here to view full function module documentation and code listing for lvc transfer from kkblo FM, simply by entering the name LVC_TRANSFER_FROM_KKBLO into the relevant SAP transaction such as SE37 or SE38.
Function Group: SLVC
Program Name: SAPLSLVC
Main Program: SAPLSLVC
Appliation area: S
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function LVC_TRANSFER_FROM_KKBLO pattern details
In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.CALL FUNCTION 'LVC_TRANSFER_FROM_KKBLO'".
EXPORTING
* I_TECH_COMPLETE = "
* IS_LAYOUT_KKBLO = "
* IS_REPREP_ID_KKBLO = "
* I_CALLBACK_PROGRAM_KKBLO = "
* IT_ADD_FIELDCAT = "ALV Control: Field Catalog II
* IT_EXCLUDING_KKBLO = "
* IT_EXCEPT_QINFO_KKBLO = "
* I_STRUCTURE_NAME = "
* IT_FIELDCAT_KKBLO = "
* IT_SORT_KKBLO = "
* IT_FILTER_KKBLO = "
* IT_SPECIAL_GROUPS_KKBLO = "
* IT_FILTERED_ENTRIES_KKBLO = "
* IT_GROUPLEVELS_KKBLO = "
* IS_SUBTOT_OPTIONS_KKBLO = "
IMPORTING
ET_FIELDCAT_LVC = "
E_VARIANT_SAVE_LVC = "
ES_PRINT_INFO_LVC = "
ES_REPREP_LVC = "
E_REPREP_ACTIVE_LVC = "
ET_EXCLUDING_LVC = "Function Code Table
ET_EXCEPT_QINFO_LVC = "Table for Exception Quickinfo
ET_SORT_LVC = "
ET_FILTER_LVC = "
ET_SPECIAL_GROUPS_LVC = "
ET_FILTER_INDEX_LVC = "
ET_GROUPLEVELS_LVC = "
ES_TOTAL_OPTIONS_LVC = "
ES_LAYOUT_LVC = "
ES_VARIANT_LVC = "
TABLES
* IT_DATA = "
EXCEPTIONS
IT_DATA_MISSING = 1
IMPORTING Parameters details for LVC_TRANSFER_FROM_KKBLO
I_TECH_COMPLETE -
Data type: CHAR01Optional: Yes
Call by Reference: Yes
IS_LAYOUT_KKBLO -
Data type: KKBLO_LAYOUTOptional: Yes
Call by Reference: Yes
IS_REPREP_ID_KKBLO -
Data type: KKBLO_REPREP_IDOptional: Yes
Call by Reference: Yes
I_CALLBACK_PROGRAM_KKBLO -
Data type: SYREPIDOptional: Yes
Call by Reference: Yes
IT_ADD_FIELDCAT - ALV Control: Field Catalog II
Data type: SLIS_T_ADD_FIELDCATOptional: Yes
Call by Reference: Yes
IT_EXCLUDING_KKBLO -
Data type: SLIS_T_EXTABOptional: Yes
Call by Reference: Yes
IT_EXCEPT_QINFO_KKBLO -
Data type: KKBLO_T_QINFOOptional: Yes
Call by Reference: Yes
I_STRUCTURE_NAME -
Data type: DD02L-TABNAMEOptional: Yes
Call by Reference: Yes
IT_FIELDCAT_KKBLO -
Data type: KKBLO_T_FIELDCATOptional: Yes
Call by Reference: Yes
IT_SORT_KKBLO -
Data type: KKBLO_T_SORTINFOOptional: Yes
Call by Reference: Yes
IT_FILTER_KKBLO -
Data type: KKBLO_T_FILTEROptional: Yes
Call by Reference: Yes
IT_SPECIAL_GROUPS_KKBLO -
Data type: KKBLO_T_SP_GROUPOptional: Yes
Call by Reference: Yes
IT_FILTERED_ENTRIES_KKBLO -
Data type: KKBLO_T_SFINFOOptional: Yes
Call by Reference: Yes
IT_GROUPLEVELS_KKBLO -
Data type: KKBLO_T_GROUPLEVELSOptional: Yes
Call by Reference: Yes
IS_SUBTOT_OPTIONS_KKBLO -
Data type: KKBLO_SUBTOT_OPTIONSOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for LVC_TRANSFER_FROM_KKBLO
ET_FIELDCAT_LVC -
Data type: LVC_T_FCATOptional: No
Call by Reference: Yes
E_VARIANT_SAVE_LVC -
Data type: COptional: No
Call by Reference: Yes
ES_PRINT_INFO_LVC -
Data type: LVC_S_PRNTOptional: No
Call by Reference: Yes
ES_REPREP_LVC -
Data type: LVC_S_RPRPOptional: No
Call by Reference: Yes
E_REPREP_ACTIVE_LVC -
Data type: LVC_REPREPOptional: No
Call by Reference: No ( called with pass by value option)
ET_EXCLUDING_LVC - Function Code Table
Data type: UI_FUNCTIONSOptional: No
Call by Reference: Yes
ET_EXCEPT_QINFO_LVC - Table for Exception Quickinfo
Data type: LVC_T_QINFOptional: No
Call by Reference: Yes
ET_SORT_LVC -
Data type: LVC_T_SORTOptional: No
Call by Reference: Yes
ET_FILTER_LVC -
Data type: LVC_T_FILTOptional: No
Call by Reference: Yes
ET_SPECIAL_GROUPS_LVC -
Data type: LVC_T_SGRPOptional: No
Call by Reference: Yes
ET_FILTER_INDEX_LVC -
Data type: LVC_T_FIDXOptional: No
Call by Reference: Yes
ET_GROUPLEVELS_LVC -
Data type: LVC_T_GRPLOptional: No
Call by Reference: Yes
ES_TOTAL_OPTIONS_LVC -
Data type: LVC_S_TOTOOptional: No
Call by Reference: Yes
ES_LAYOUT_LVC -
Data type: LVC_S_LAYOOptional: No
Call by Reference: Yes
ES_VARIANT_LVC -
Data type: DISVARIANTOptional: No
Call by Reference: Yes
TABLES Parameters details for LVC_TRANSFER_FROM_KKBLO
IT_DATA -
Data type: TABLEOptional: Yes
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
IT_DATA_MISSING -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for LVC_TRANSFER_FROM_KKBLO Function Module
The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than 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 newer method of declaring data variables on the fly. 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), which i why i have stuck to the origianl for this example.| DATA: | ||||
| lt_it_data | TYPE STANDARD TABLE OF TABLE, " | |||
| lv_et_fieldcat_lvc | TYPE LVC_T_FCAT, " | |||
| lv_it_data_missing | TYPE LVC_T_FCAT, " | |||
| lv_i_tech_complete | TYPE CHAR01, " | |||
| lv_is_layout_kkblo | TYPE KKBLO_LAYOUT, " | |||
| lv_e_variant_save_lvc | TYPE C, " | |||
| lv_es_print_info_lvc | TYPE LVC_S_PRNT, " | |||
| lv_is_reprep_id_kkblo | TYPE KKBLO_REPREP_ID, " | |||
| lv_es_reprep_lvc | TYPE LVC_S_RPRP, " | |||
| lv_i_callback_program_kkblo | TYPE SYREPID, " | |||
| lv_it_add_fieldcat | TYPE SLIS_T_ADD_FIELDCAT, " | |||
| lv_e_reprep_active_lvc | TYPE LVC_REPREP, " | |||
| lv_et_excluding_lvc | TYPE UI_FUNCTIONS, " | |||
| lv_it_excluding_kkblo | TYPE SLIS_T_EXTAB, " | |||
| lv_et_except_qinfo_lvc | TYPE LVC_T_QINF, " | |||
| lv_it_except_qinfo_kkblo | TYPE KKBLO_T_QINFO, " | |||
| lv_et_sort_lvc | TYPE LVC_T_SORT, " | |||
| lv_i_structure_name | TYPE DD02L-TABNAME, " | |||
| lv_et_filter_lvc | TYPE LVC_T_FILT, " | |||
| lv_it_fieldcat_kkblo | TYPE KKBLO_T_FIELDCAT, " | |||
| lv_it_sort_kkblo | TYPE KKBLO_T_SORTINFO, " | |||
| lv_et_special_groups_lvc | TYPE LVC_T_SGRP, " | |||
| lv_it_filter_kkblo | TYPE KKBLO_T_FILTER, " | |||
| lv_et_filter_index_lvc | TYPE LVC_T_FIDX, " | |||
| lv_et_grouplevels_lvc | TYPE LVC_T_GRPL, " | |||
| lv_it_special_groups_kkblo | TYPE KKBLO_T_SP_GROUP, " | |||
| lv_es_total_options_lvc | TYPE LVC_S_TOTO, " | |||
| lv_it_filtered_entries_kkblo | TYPE KKBLO_T_SFINFO, " | |||
| lv_es_layout_lvc | TYPE LVC_S_LAYO, " | |||
| lv_it_grouplevels_kkblo | TYPE KKBLO_T_GROUPLEVELS, " | |||
| lv_es_variant_lvc | TYPE DISVARIANT, " | |||
| lv_is_subtot_options_kkblo | TYPE KKBLO_SUBTOT_OPTIONS. " |
|   CALL FUNCTION 'LVC_TRANSFER_FROM_KKBLO' " |
| EXPORTING | ||
| I_TECH_COMPLETE | = lv_i_tech_complete | |
| IS_LAYOUT_KKBLO | = lv_is_layout_kkblo | |
| IS_REPREP_ID_KKBLO | = lv_is_reprep_id_kkblo | |
| I_CALLBACK_PROGRAM_KKBLO | = lv_i_callback_program_kkblo | |
| IT_ADD_FIELDCAT | = lv_it_add_fieldcat | |
| IT_EXCLUDING_KKBLO | = lv_it_excluding_kkblo | |
| IT_EXCEPT_QINFO_KKBLO | = lv_it_except_qinfo_kkblo | |
| I_STRUCTURE_NAME | = lv_i_structure_name | |
| IT_FIELDCAT_KKBLO | = lv_it_fieldcat_kkblo | |
| IT_SORT_KKBLO | = lv_it_sort_kkblo | |
| IT_FILTER_KKBLO | = lv_it_filter_kkblo | |
| IT_SPECIAL_GROUPS_KKBLO | = lv_it_special_groups_kkblo | |
| IT_FILTERED_ENTRIES_KKBLO | = lv_it_filtered_entries_kkblo | |
| IT_GROUPLEVELS_KKBLO | = lv_it_grouplevels_kkblo | |
| IS_SUBTOT_OPTIONS_KKBLO | = lv_is_subtot_options_kkblo | |
| IMPORTING | ||
| ET_FIELDCAT_LVC | = lv_et_fieldcat_lvc | |
| E_VARIANT_SAVE_LVC | = lv_e_variant_save_lvc | |
| ES_PRINT_INFO_LVC | = lv_es_print_info_lvc | |
| ES_REPREP_LVC | = lv_es_reprep_lvc | |
| E_REPREP_ACTIVE_LVC | = lv_e_reprep_active_lvc | |
| ET_EXCLUDING_LVC | = lv_et_excluding_lvc | |
| ET_EXCEPT_QINFO_LVC | = lv_et_except_qinfo_lvc | |
| ET_SORT_LVC | = lv_et_sort_lvc | |
| ET_FILTER_LVC | = lv_et_filter_lvc | |
| ET_SPECIAL_GROUPS_LVC | = lv_et_special_groups_lvc | |
| ET_FILTER_INDEX_LVC | = lv_et_filter_index_lvc | |
| ET_GROUPLEVELS_LVC | = lv_et_grouplevels_lvc | |
| ES_TOTAL_OPTIONS_LVC | = lv_es_total_options_lvc | |
| ES_LAYOUT_LVC | = lv_es_layout_lvc | |
| ES_VARIANT_LVC | = lv_es_variant_lvc | |
| TABLES | ||
| IT_DATA | = lt_it_data | |
| EXCEPTIONS | ||
| IT_DATA_MISSING = 1 | ||
| . " LVC_TRANSFER_FROM_KKBLO | ||
ABAP code using 7.40 inline data declarations to call FM LVC_TRANSFER_FROM_KKBLO
The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.| "SELECT single TABNAME FROM DD02L INTO @DATA(ld_i_structure_name). | ||||
Search for further information about these or an SAP related objects