SAP BKK_DB_BKKF_SAVE_MLT Function Module for Saves term details of multiple accounts by primary key









BKK_DB_BKKF_SAVE_MLT is a standard bkk db bkkf save mlt SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Saves term details of multiple accounts by primary key 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 db bkkf save mlt FM, simply by entering the name BKK_DB_BKKF_SAVE_MLT into the relevant SAP transaction such as SE37 or SE38.

Function Group: BKK_DB_BKKF
Program Name: SAPLBKK_DB_BKKF
Main Program: SAPLFB00
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function BKK_DB_BKKF_SAVE_MLT 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_DB_BKKF_SAVE_MLT'"Saves term details of multiple accounts by primary key
EXPORTING
I_TAB_BKK58_DATA = "Master Data Fixed-Term Deposit, Installmnt Savings
* I_TAB_BKK40_DATA = "Table Type for BKK40
I_TAB_BKK43_DATA = "Table Type for BKK43
* I_TAB_BKK42_DATA = "Table Categories for Table BKK42
* I_TAB_TERMS = "Table Type for BKKTERM
* I_TAB_PPRC_TERMS = "Table Type for BKKTERM
I_TAB_BANKAREA_ACNUM = "Account Key: Bank Area and Int. Account Number
* I_FLG_UPDATE_TASK = "Indicator: Update Performed in Update Task

IMPORTING
E_TAB_RC = "Return Code and corresponding Message
.



IMPORTING Parameters details for BKK_DB_BKKF_SAVE_MLT

I_TAB_BKK58_DATA - Master Data Fixed-Term Deposit, Installmnt Savings

Data type: BKK_TAB_BKK58
Optional: No
Call by Reference: Yes

I_TAB_BKK40_DATA - Table Type for BKK40

Data type: BKK_TAB_BKK40
Optional: Yes
Call by Reference: Yes

I_TAB_BKK43_DATA - Table Type for BKK43

Data type: BKK_TAB_BKK43
Optional: No
Call by Reference: Yes

I_TAB_BKK42_DATA - Table Categories for Table BKK42

Data type: BKK_TAB_BKK42
Optional: Yes
Call by Reference: Yes

I_TAB_TERMS - Table Type for BKKTERM

Data type: BKK10_TAB_BKKTERM
Optional: Yes
Call by Reference: Yes

I_TAB_PPRC_TERMS - Table Type for BKKTERM

Data type: BKK_TTY_BKKTERMPPRC
Optional: Yes
Call by Reference: Yes

I_TAB_BANKAREA_ACNUM - Account Key: Bank Area and Int. Account Number

Data type: BKK_TAB_BKKRS_ACNUM
Optional: No
Call by Reference: Yes

I_FLG_UPDATE_TASK - Indicator: Update Performed in Update Task

Data type: BKK_FLG_UPDATE_TASK
Optional: Yes
Call by Reference: Yes

EXPORTING Parameters details for BKK_DB_BKKF_SAVE_MLT

E_TAB_RC - Return Code and corresponding Message

Data type: BKK_TAB_MSG_COL_MESSAGE
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for BKK_DB_BKKF_SAVE_MLT 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_tab_rc  TYPE BKK_TAB_MSG_COL_MESSAGE, "   
lv_i_tab_bkk58_data  TYPE BKK_TAB_BKK58, "   
lv_i_tab_bkk40_data  TYPE BKK_TAB_BKK40, "   
lv_i_tab_bkk43_data  TYPE BKK_TAB_BKK43, "   
lv_i_tab_bkk42_data  TYPE BKK_TAB_BKK42, "   
lv_i_tab_terms  TYPE BKK10_TAB_BKKTERM, "   
lv_i_tab_pprc_terms  TYPE BKK_TTY_BKKTERMPPRC, "   
lv_i_tab_bankarea_acnum  TYPE BKK_TAB_BKKRS_ACNUM, "   
lv_i_flg_update_task  TYPE BKK_FLG_UPDATE_TASK. "   

  CALL FUNCTION 'BKK_DB_BKKF_SAVE_MLT'  "Saves term details of multiple accounts by primary key
    EXPORTING
         I_TAB_BKK58_DATA = lv_i_tab_bkk58_data
         I_TAB_BKK40_DATA = lv_i_tab_bkk40_data
         I_TAB_BKK43_DATA = lv_i_tab_bkk43_data
         I_TAB_BKK42_DATA = lv_i_tab_bkk42_data
         I_TAB_TERMS = lv_i_tab_terms
         I_TAB_PPRC_TERMS = lv_i_tab_pprc_terms
         I_TAB_BANKAREA_ACNUM = lv_i_tab_bankarea_acnum
         I_FLG_UPDATE_TASK = lv_i_flg_update_task
    IMPORTING
         E_TAB_RC = lv_e_tab_rc
. " BKK_DB_BKKF_SAVE_MLT




ABAP code using 7.40 inline data declarations to call FM BKK_DB_BKKF_SAVE_MLT

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.

 
 
 
 
 
 
 
 
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!