SAP BDL_FUNCTION_INTERFACE_GET Function Module for Provides all interface informations for RFC download functions
BDL_FUNCTION_INTERFACE_GET is a standard bdl function interface get SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Provides all interface informations for RFC download functions processing and below is the pattern details for this FM, 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 bdl function interface get FM, simply by entering the name BDL_FUNCTION_INTERFACE_GET into the relevant SAP transaction such as SE37 or SE38.
Function Group: BDL5
Program Name: SAPLBDL5
Main Program: SAPLBDL5
Appliation area: S
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function BDL_FUNCTION_INTERFACE_GET 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 'BDL_FUNCTION_INTERFACE_GET'"Provides all interface informations for RFC download functions.
EXPORTING
FUNCNAME = "
IMPORTING
GLOBAL_FLAG = "
REMOTE_CALL = "
UPDATE_TASK = "
TABLES
* EXCEPTION_LIST = "
* EXPORT_PARAMETER = "
* IMPORT_PARAMETER = "
* CHANGING_PARAMETER = "
* TABLES_PARAMETER = "
* P_DOCU = "
* NAMETAB_INFO = "
* DFIES_TAB = "
* TABLE_HEADERS = "
EXCEPTIONS
FUNCTION_NOT_FOUND = 1 INVALID_NAME = 2 X_ERROR = 3 NAMETAB_ERROR = 4
IMPORTING Parameters details for BDL_FUNCTION_INTERFACE_GET
FUNCNAME -
Data type: RS38L-NAMEOptional: No
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for BDL_FUNCTION_INTERFACE_GET
GLOBAL_FLAG -
Data type: RS38L-GLOBALOptional: No
Call by Reference: No ( called with pass by value option)
REMOTE_CALL -
Data type: RS38L-REMOTEOptional: No
Call by Reference: No ( called with pass by value option)
UPDATE_TASK -
Data type: RS38L-UTASKOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for BDL_FUNCTION_INTERFACE_GET
EXCEPTION_LIST -
Data type: RSEXCOptional: Yes
Call by Reference: No ( called with pass by value option)
EXPORT_PARAMETER -
Data type: RSEXPOptional: Yes
Call by Reference: No ( called with pass by value option)
IMPORT_PARAMETER -
Data type: RSIMPOptional: Yes
Call by Reference: No ( called with pass by value option)
CHANGING_PARAMETER -
Data type: RSCHAOptional: Yes
Call by Reference: No ( called with pass by value option)
TABLES_PARAMETER -
Data type: RSTBLOptional: Yes
Call by Reference: No ( called with pass by value option)
P_DOCU -
Data type: RSFDOOptional: Yes
Call by Reference: No ( called with pass by value option)
NAMETAB_INFO -
Data type: BDLNAMTABOptional: Yes
Call by Reference: No ( called with pass by value option)
DFIES_TAB -
Data type: BDLDFIESOptional: Yes
Call by Reference: No ( called with pass by value option)
TABLE_HEADERS -
Data type: BDLTABHEAOptional: Yes
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
FUNCTION_NOT_FOUND -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
INVALID_NAME -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
X_ERROR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NAMETAB_ERROR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for BDL_FUNCTION_INTERFACE_GET 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_funcname | TYPE RS38L-NAME, " | |||
| lv_global_flag | TYPE RS38L-GLOBAL, " | |||
| lt_exception_list | TYPE STANDARD TABLE OF RSEXC, " | |||
| lv_function_not_found | TYPE RSEXC, " | |||
| lv_remote_call | TYPE RS38L-REMOTE, " | |||
| lv_invalid_name | TYPE RS38L, " | |||
| lt_export_parameter | TYPE STANDARD TABLE OF RSEXP, " | |||
| lv_x_error | TYPE RSEXP, " | |||
| lv_update_task | TYPE RS38L-UTASK, " | |||
| lt_import_parameter | TYPE STANDARD TABLE OF RSIMP, " | |||
| lv_nametab_error | TYPE RSIMP, " | |||
| lt_changing_parameter | TYPE STANDARD TABLE OF RSCHA, " | |||
| lt_tables_parameter | TYPE STANDARD TABLE OF RSTBL, " | |||
| lt_p_docu | TYPE STANDARD TABLE OF RSFDO, " | |||
| lt_nametab_info | TYPE STANDARD TABLE OF BDLNAMTAB, " | |||
| lt_dfies_tab | TYPE STANDARD TABLE OF BDLDFIES, " | |||
| lt_table_headers | TYPE STANDARD TABLE OF BDLTABHEA. " |
|   CALL FUNCTION 'BDL_FUNCTION_INTERFACE_GET' "Provides all interface informations for RFC download functions |
| EXPORTING | ||
| FUNCNAME | = lv_funcname | |
| IMPORTING | ||
| GLOBAL_FLAG | = lv_global_flag | |
| REMOTE_CALL | = lv_remote_call | |
| UPDATE_TASK | = lv_update_task | |
| TABLES | ||
| EXCEPTION_LIST | = lt_exception_list | |
| EXPORT_PARAMETER | = lt_export_parameter | |
| IMPORT_PARAMETER | = lt_import_parameter | |
| CHANGING_PARAMETER | = lt_changing_parameter | |
| TABLES_PARAMETER | = lt_tables_parameter | |
| P_DOCU | = lt_p_docu | |
| NAMETAB_INFO | = lt_nametab_info | |
| DFIES_TAB | = lt_dfies_tab | |
| TABLE_HEADERS | = lt_table_headers | |
| EXCEPTIONS | ||
| FUNCTION_NOT_FOUND = 1 | ||
| INVALID_NAME = 2 | ||
| X_ERROR = 3 | ||
| NAMETAB_ERROR = 4 | ||
| . " BDL_FUNCTION_INTERFACE_GET | ||
ABAP code using 7.40 inline data declarations to call FM BDL_FUNCTION_INTERFACE_GET
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 NAME FROM RS38L INTO @DATA(ld_funcname). | ||||
| "SELECT single GLOBAL FROM RS38L INTO @DATA(ld_global_flag). | ||||
| "SELECT single REMOTE FROM RS38L INTO @DATA(ld_remote_call). | ||||
| "SELECT single UTASK FROM RS38L INTO @DATA(ld_update_task). | ||||
Search for further information about these or an SAP related objects