SAP BKK_PAYM_ITEM_SELECT_BAPI_LIST Function Module for Selects Turnover Items in Accordance with BAPI_PAYM_ITEM_GET_LIST
BKK_PAYM_ITEM_SELECT_BAPI_LIST is a standard bkk paym item select bapi list SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Selects Turnover Items in Accordance with BAPI_PAYM_ITEM_GET_LIST 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 select bapi list FM, simply by entering the name BKK_PAYM_ITEM_SELECT_BAPI_LIST into the relevant SAP transaction such as SE37 or SE38.
Function Group: FBI4
Program Name: SAPLFBI4
Main Program: SAPLFBI4
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function BKK_PAYM_ITEM_SELECT_BAPI_LIST 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_SELECT_BAPI_LIST'"Selects Turnover Items in Accordance with BAPI_PAYM_ITEM_GET_LIST.
EXPORTING
I_BANKS = "Bank Country Key
* I_RLDAT_LAST = "Release Date of Item Last Output
* I_RLTIM_LAST = "Release Event
I_BANKL = "Bank Key
I_ACNUM_EXT = "Account Number
* I_POSTDATE_FROM = "Posting Date From
* I_POSTDATE_TO = "Posting Date To
* I_RLDAT_FROM = "Release Date From
* I_RLTIM_FROM = "Release Event From
* I_RLDAT_TO = "Release Date To
* I_RLTIM_TO = "Release Event From
IMPORTING
E_RETURN = "Return Value: 0 = No Errors
TABLES
T_PAYM_ITEMS = "Table of Turnovers
IMPORTING Parameters details for BKK_PAYM_ITEM_SELECT_BAPI_LIST
I_BANKS - Bank Country Key
Data type: IBKK_ITEM-BANKSOptional: No
Call by Reference: No ( called with pass by value option)
I_RLDAT_LAST - Release Date of Item Last Output
Data type: IBKK_ITEM-RLDATOptional: Yes
Call by Reference: No ( called with pass by value option)
I_RLTIM_LAST - Release Event
Data type: IBKK_ITEM-RLTIMOptional: Yes
Call by Reference: No ( called with pass by value option)
I_BANKL - Bank Key
Data type: IBKK_ITEM-BANKLOptional: No
Call by Reference: No ( called with pass by value option)
I_ACNUM_EXT - Account Number
Data type: IBKK_ITEM-ACNUM_EXTOptional: No
Call by Reference: No ( called with pass by value option)
I_POSTDATE_FROM - Posting Date From
Data type: IBKK_ITEM-DATE_POSTOptional: Yes
Call by Reference: No ( called with pass by value option)
I_POSTDATE_TO - Posting Date To
Data type: IBKK_ITEM-DATE_POSTOptional: Yes
Call by Reference: No ( called with pass by value option)
I_RLDAT_FROM - Release Date From
Data type: IBKK_ITEM-RLDATOptional: Yes
Call by Reference: No ( called with pass by value option)
I_RLTIM_FROM - Release Event From
Data type: IBKK_ITEM-RLTIMOptional: Yes
Call by Reference: No ( called with pass by value option)
I_RLDAT_TO - Release Date To
Data type: IBKK_ITEM-RLDATOptional: Yes
Call by Reference: No ( called with pass by value option)
I_RLTIM_TO - Release Event From
Data type: IBKK_ITEM-RLTIMOptional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for BKK_PAYM_ITEM_SELECT_BAPI_LIST
E_RETURN - Return Value: 0 = No Errors
Data type: SY-SUBRCOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for BKK_PAYM_ITEM_SELECT_BAPI_LIST
T_PAYM_ITEMS - Table of Turnovers
Data type: IBKK_ITEMOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for BKK_PAYM_ITEM_SELECT_BAPI_LIST 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_banks | TYPE IBKK_ITEM-BANKS, " | |||
| lv_e_return | TYPE SY-SUBRC, " | |||
| lt_t_paym_items | TYPE STANDARD TABLE OF IBKK_ITEM, " | |||
| lv_i_rldat_last | TYPE IBKK_ITEM-RLDAT, " | |||
| lv_i_rltim_last | TYPE IBKK_ITEM-RLTIM, " | |||
| lv_i_bankl | TYPE IBKK_ITEM-BANKL, " | |||
| lv_i_acnum_ext | TYPE IBKK_ITEM-ACNUM_EXT, " | |||
| lv_i_postdate_from | TYPE IBKK_ITEM-DATE_POST, " | |||
| lv_i_postdate_to | TYPE IBKK_ITEM-DATE_POST, " | |||
| lv_i_rldat_from | TYPE IBKK_ITEM-RLDAT, " | |||
| lv_i_rltim_from | TYPE IBKK_ITEM-RLTIM, " | |||
| lv_i_rldat_to | TYPE IBKK_ITEM-RLDAT, " | |||
| lv_i_rltim_to | TYPE IBKK_ITEM-RLTIM. " |
|   CALL FUNCTION 'BKK_PAYM_ITEM_SELECT_BAPI_LIST' "Selects Turnover Items in Accordance with BAPI_PAYM_ITEM_GET_LIST |
| EXPORTING | ||
| I_BANKS | = lv_i_banks | |
| I_RLDAT_LAST | = lv_i_rldat_last | |
| I_RLTIM_LAST | = lv_i_rltim_last | |
| I_BANKL | = lv_i_bankl | |
| I_ACNUM_EXT | = lv_i_acnum_ext | |
| I_POSTDATE_FROM | = lv_i_postdate_from | |
| I_POSTDATE_TO | = lv_i_postdate_to | |
| I_RLDAT_FROM | = lv_i_rldat_from | |
| I_RLTIM_FROM | = lv_i_rltim_from | |
| I_RLDAT_TO | = lv_i_rldat_to | |
| I_RLTIM_TO | = lv_i_rltim_to | |
| IMPORTING | ||
| E_RETURN | = lv_e_return | |
| TABLES | ||
| T_PAYM_ITEMS | = lt_t_paym_items | |
| . " BKK_PAYM_ITEM_SELECT_BAPI_LIST | ||
ABAP code using 7.40 inline data declarations to call FM BKK_PAYM_ITEM_SELECT_BAPI_LIST
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 BANKS FROM IBKK_ITEM INTO @DATA(ld_i_banks). | ||||
| "SELECT single SUBRC FROM SY INTO @DATA(ld_e_return). | ||||
| "SELECT single RLDAT FROM IBKK_ITEM INTO @DATA(ld_i_rldat_last). | ||||
| "SELECT single RLTIM FROM IBKK_ITEM INTO @DATA(ld_i_rltim_last). | ||||
| "SELECT single BANKL FROM IBKK_ITEM INTO @DATA(ld_i_bankl). | ||||
| "SELECT single ACNUM_EXT FROM IBKK_ITEM INTO @DATA(ld_i_acnum_ext). | ||||
| "SELECT single DATE_POST FROM IBKK_ITEM INTO @DATA(ld_i_postdate_from). | ||||
| "SELECT single DATE_POST FROM IBKK_ITEM INTO @DATA(ld_i_postdate_to). | ||||
| "SELECT single RLDAT FROM IBKK_ITEM INTO @DATA(ld_i_rldat_from). | ||||
| "SELECT single RLTIM FROM IBKK_ITEM INTO @DATA(ld_i_rltim_from). | ||||
| "SELECT single RLDAT FROM IBKK_ITEM INTO @DATA(ld_i_rldat_to). | ||||
| "SELECT single RLTIM FROM IBKK_ITEM INTO @DATA(ld_i_rltim_to). | ||||
Search for further information about these or an SAP related objects