SAP LT_FC_LOAD Function Module for
LT_FC_LOAD is a standard lt fc load 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 lt fc load FM, simply by entering the name LT_FC_LOAD into the relevant SAP transaction such as SE37 or SE38.
Function Group: SKBS
Program Name: SAPLSKBS
Main Program: SAPLSKBS
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function LT_FC_LOAD 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 'LT_FC_LOAD'".
EXPORTING
* I_TOOL = 'LT' "
IS_VARIANT = "
I_TABNAME = "
* I_TABNAME_SLAVE = "
* I_FCAT_COMPLETE = "
IMPORTING
ET_FIELDCAT = "
ET_SORT = "
ET_FILTER = "
CHANGING
CS_LAYOUT = "
CT_DEFAULT_FIELDCAT = "
EXCEPTIONS
FC_NOT_COMPLETE = 1
IMPORTING Parameters details for LT_FC_LOAD
I_TOOL -
Data type: LTDX-RELIDDefault: 'LT'
Optional: Yes
Call by Reference: No ( called with pass by value option)
IS_VARIANT -
Data type: DISVARIANTOptional: No
Call by Reference: No ( called with pass by value option)
I_TABNAME -
Data type: KKBLO_TABNAMEOptional: No
Call by Reference: No ( called with pass by value option)
I_TABNAME_SLAVE -
Data type: KKBLO_TABNAMEOptional: Yes
Call by Reference: No ( called with pass by value option)
I_FCAT_COMPLETE -
Data type: ABAP_BOOLOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for LT_FC_LOAD
ET_FIELDCAT -
Data type: KKBLO_T_FIELDCATOptional: No
Call by Reference: No ( called with pass by value option)
ET_SORT -
Data type: KKBLO_T_SORTINFOOptional: No
Call by Reference: No ( called with pass by value option)
ET_FILTER -
Data type: KKBLO_T_FILTEROptional: No
Call by Reference: No ( called with pass by value option)
CHANGING Parameters details for LT_FC_LOAD
CS_LAYOUT -
Data type: KKBLO_LAYOUTOptional: No
Call by Reference: No ( called with pass by value option)
CT_DEFAULT_FIELDCAT -
Data type: KKBLO_T_FIELDCATOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
FC_NOT_COMPLETE -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for LT_FC_LOAD 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: | ||||
| lv_i_tool | TYPE LTDX-RELID, " 'LT' | |||
| lv_cs_layout | TYPE KKBLO_LAYOUT, " | |||
| lv_et_fieldcat | TYPE KKBLO_T_FIELDCAT, " | |||
| lv_fc_not_complete | TYPE KKBLO_T_FIELDCAT, " | |||
| lv_et_sort | TYPE KKBLO_T_SORTINFO, " | |||
| lv_is_variant | TYPE DISVARIANT, " | |||
| lv_ct_default_fieldcat | TYPE KKBLO_T_FIELDCAT, " | |||
| lv_et_filter | TYPE KKBLO_T_FILTER, " | |||
| lv_i_tabname | TYPE KKBLO_TABNAME, " | |||
| lv_i_tabname_slave | TYPE KKBLO_TABNAME, " | |||
| lv_i_fcat_complete | TYPE ABAP_BOOL. " |
|   CALL FUNCTION 'LT_FC_LOAD' " |
| EXPORTING | ||
| I_TOOL | = lv_i_tool | |
| IS_VARIANT | = lv_is_variant | |
| I_TABNAME | = lv_i_tabname | |
| I_TABNAME_SLAVE | = lv_i_tabname_slave | |
| I_FCAT_COMPLETE | = lv_i_fcat_complete | |
| IMPORTING | ||
| ET_FIELDCAT | = lv_et_fieldcat | |
| ET_SORT | = lv_et_sort | |
| ET_FILTER | = lv_et_filter | |
| CHANGING | ||
| CS_LAYOUT | = lv_cs_layout | |
| CT_DEFAULT_FIELDCAT | = lv_ct_default_fieldcat | |
| EXCEPTIONS | ||
| FC_NOT_COMPLETE = 1 | ||
| . " LT_FC_LOAD | ||
ABAP code using 7.40 inline data declarations to call FM LT_FC_LOAD
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 RELID FROM LTDX INTO @DATA(ld_i_tool). | ||||
| DATA(ld_i_tool) | = 'LT'. | |||
Search for further information about these or an SAP related objects