SAP BKK_PAYMIN_GET_HEADER Function Module for Read Header Table BKKPAYMIN_HD
BKK_PAYMIN_GET_HEADER is a standard bkk paymin get header SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Read Header Table BKKPAYMIN_HD 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 bkk paymin get header FM, simply by entering the name BKK_PAYMIN_GET_HEADER into the relevant SAP transaction such as SE37 or SE38.
Function Group: FBIDTA1
Program Name: SAPLFBIDTA1
Main Program: SAPLFBIDTA1
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function BKK_PAYMIN_GET_HEADER 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 'BKK_PAYMIN_GET_HEADER'"Read Header Table BKKPAYMIN_HD.
IMPORTING
E_RC = "
TABLES
E_T_BKKPAYMIN_HD = "
* I_T_RNG_FILE_NAME = "
* I_T_RNG_RUN_NO = "
* I_T_RNG_RUN_NO_ADD = "
* I_T_RNG_DATE_BRING_IN = "
* I_T_RNG_STATE = "
EXPORTING Parameters details for BKK_PAYMIN_GET_HEADER
E_RC -
Data type: SY-SUBRCOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for BKK_PAYMIN_GET_HEADER
E_T_BKKPAYMIN_HD -
Data type: BKKPAYMIN_HDOptional: No
Call by Reference: No ( called with pass by value option)
I_T_RNG_FILE_NAME -
Data type: BKKPI_R_FILE_NAMEOptional: Yes
Call by Reference: No ( called with pass by value option)
I_T_RNG_RUN_NO -
Data type: BKKPI_R_RUN_NOOptional: Yes
Call by Reference: No ( called with pass by value option)
I_T_RNG_RUN_NO_ADD -
Data type: BKKPI_R_RUN_NO_ADDOptional: Yes
Call by Reference: No ( called with pass by value option)
I_T_RNG_DATE_BRING_IN -
Data type: BKKPI_R_DATE_BRING_INOptional: Yes
Call by Reference: No ( called with pass by value option)
I_T_RNG_STATE -
Data type: BKKPI_R_STATEOptional: Yes
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for BKK_PAYMIN_GET_HEADER 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_e_rc | TYPE SY-SUBRC, " | |||
| lt_e_t_bkkpaymin_hd | TYPE STANDARD TABLE OF BKKPAYMIN_HD, " | |||
| lt_i_t_rng_file_name | TYPE STANDARD TABLE OF BKKPI_R_FILE_NAME, " | |||
| lt_i_t_rng_run_no | TYPE STANDARD TABLE OF BKKPI_R_RUN_NO, " | |||
| lt_i_t_rng_run_no_add | TYPE STANDARD TABLE OF BKKPI_R_RUN_NO_ADD, " | |||
| lt_i_t_rng_date_bring_in | TYPE STANDARD TABLE OF BKKPI_R_DATE_BRING_IN, " | |||
| lt_i_t_rng_state | TYPE STANDARD TABLE OF BKKPI_R_STATE. " |
|   CALL FUNCTION 'BKK_PAYMIN_GET_HEADER' "Read Header Table BKKPAYMIN_HD |
| IMPORTING | ||
| E_RC | = lv_e_rc | |
| TABLES | ||
| E_T_BKKPAYMIN_HD | = lt_e_t_bkkpaymin_hd | |
| I_T_RNG_FILE_NAME | = lt_i_t_rng_file_name | |
| I_T_RNG_RUN_NO | = lt_i_t_rng_run_no | |
| I_T_RNG_RUN_NO_ADD | = lt_i_t_rng_run_no_add | |
| I_T_RNG_DATE_BRING_IN | = lt_i_t_rng_date_bring_in | |
| I_T_RNG_STATE | = lt_i_t_rng_state | |
| . " BKK_PAYMIN_GET_HEADER | ||
ABAP code using 7.40 inline data declarations to call FM BKK_PAYMIN_GET_HEADER
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 SUBRC FROM SY INTO @DATA(ld_e_rc). | ||||
Search for further information about these or an SAP related objects