SAP BKK_PAYM_ITEM_AUTH_CHECK_MULT Function Module for BCA: Check Authorization for Multiple Payment Orders
BKK_PAYM_ITEM_AUTH_CHECK_MULT is a standard bkk paym item auth check mult SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for BCA: Check Authorization for Multiple Payment Orders 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 paym item auth check mult FM, simply by entering the name BKK_PAYM_ITEM_AUTH_CHECK_MULT into the relevant SAP transaction such as SE37 or SE38.
Function Group: FBIL
Program Name: SAPLFBIL
Main Program: SAPLFBIL
Appliation area: F
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function BKK_PAYM_ITEM_AUTH_CHECK_MULT 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_PAYM_ITEM_AUTH_CHECK_MULT'"BCA: Check Authorization for Multiple Payment Orders.
EXPORTING
I_ACTVT = "
* I_MSG_HANDLER = 'X' "
* I_XAUTH_KIND = ' ' "'X': Also Authorization Type Check
* I_FLG_NO_WF = "Checkbox
IMPORTING
E_NUMBER_NO_AUTH = "Number of Payment Items Without Authorization
E_RC = "Return Value of ABAP Statements
TABLES
T_BKKIT = "
* T_BKKIT_ALLOWED = "
IMPORTING Parameters details for BKK_PAYM_ITEM_AUTH_CHECK_MULT
I_ACTVT -
Data type: TACT-ACTVTOptional: No
Call by Reference: Yes
I_MSG_HANDLER -
Data type: BOOLE-BOOLEDefault: 'X'
Optional: Yes
Call by Reference: Yes
I_XAUTH_KIND - 'X': Also Authorization Type Check
Data type: BOOLE-BOOLEDefault: ' '
Optional: Yes
Call by Reference: Yes
I_FLG_NO_WF - Checkbox
Data type: XFELDOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for BKK_PAYM_ITEM_AUTH_CHECK_MULT
E_NUMBER_NO_AUTH - Number of Payment Items Without Authorization
Data type: IOptional: No
Call by Reference: No ( called with pass by value option)
E_RC - Return Value of ABAP Statements
Data type: SY-SUBRCOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for BKK_PAYM_ITEM_AUTH_CHECK_MULT
T_BKKIT -
Data type: BKKITOptional: No
Call by Reference: No ( called with pass by value option)
T_BKKIT_ALLOWED -
Data type: BKKITOptional: Yes
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for BKK_PAYM_ITEM_AUTH_CHECK_MULT 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_actvt | TYPE TACT-ACTVT, " | |||
| lt_t_bkkit | TYPE STANDARD TABLE OF BKKIT, " | |||
| lv_e_number_no_auth | TYPE I, " | |||
| lv_e_rc | TYPE SY-SUBRC, " | |||
| lv_i_msg_handler | TYPE BOOLE-BOOLE, " 'X' | |||
| lt_t_bkkit_allowed | TYPE STANDARD TABLE OF BKKIT, " | |||
| lv_i_xauth_kind | TYPE BOOLE-BOOLE, " ' ' | |||
| lv_i_flg_no_wf | TYPE XFELD. " |
|   CALL FUNCTION 'BKK_PAYM_ITEM_AUTH_CHECK_MULT' "BCA: Check Authorization for Multiple Payment Orders |
| EXPORTING | ||
| I_ACTVT | = lv_i_actvt | |
| I_MSG_HANDLER | = lv_i_msg_handler | |
| I_XAUTH_KIND | = lv_i_xauth_kind | |
| I_FLG_NO_WF | = lv_i_flg_no_wf | |
| IMPORTING | ||
| E_NUMBER_NO_AUTH | = lv_e_number_no_auth | |
| E_RC | = lv_e_rc | |
| TABLES | ||
| T_BKKIT | = lt_t_bkkit | |
| T_BKKIT_ALLOWED | = lt_t_bkkit_allowed | |
| . " BKK_PAYM_ITEM_AUTH_CHECK_MULT | ||
ABAP code using 7.40 inline data declarations to call FM BKK_PAYM_ITEM_AUTH_CHECK_MULT
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 ACTVT FROM TACT INTO @DATA(ld_i_actvt). | ||||
| "SELECT single SUBRC FROM SY INTO @DATA(ld_e_rc). | ||||
| "SELECT single BOOLE FROM BOOLE INTO @DATA(ld_i_msg_handler). | ||||
| DATA(ld_i_msg_handler) | = 'X'. | |||
| "SELECT single BOOLE FROM BOOLE INTO @DATA(ld_i_xauth_kind). | ||||
| DATA(ld_i_xauth_kind) | = ' '. | |||
Search for further information about these or an SAP related objects