SAP BKK_COND_OVERVIEW_INT_PREP Function Module for Format Interest Conditions for the Overview List









BKK_COND_OVERVIEW_INT_PREP is a standard bkk cond overview int prep SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Format Interest Conditions for the Overview 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 cond overview int prep FM, simply by entering the name BKK_COND_OVERVIEW_INT_PREP into the relevant SAP transaction such as SE37 or SE38.

Function Group: FB82
Program Name: SAPLFB82
Main Program: SAPLFB82
Appliation area: F
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function BKK_COND_OVERVIEW_INT_PREP 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_COND_OVERVIEW_INT_PREP'"Format Interest Conditions for the Overview List
EXPORTING
I_CONDGR_CAT = "
* I_EST_COND = "Fixing Standard Conditions
* I_EST_DATE = "Date and Time; Current (Application Server) Date
* I_DEPOSIT = "Contract Amount, Deposit
* I_SKIP_MESSAGE_HANDLER = ' ' "Data Element for BOOLE Domain: TRUE (='X') and FALSE (=' ')
* I_TAB_PERIOD = "
* I_S_BKKTERM = "Term Agreement for Fixed-Term Deposit and Installmt Savings
I_CONDAREA = "
I_CONDGR = "
I_BKKRS = "
I_ACNUM_INT = "
I_CURR = "
* I_START_DATE = SY-DATUM "
* I_END_DATE = SY-DATUM "
* I_FLG_NO_IR_HISTORY = "Flag: No Interest Rate History

TABLES
I_T_STD_CONDITION = "
I_T_STD_POSITION = "
I_T_IND_CONDITION = "
I_T_IND_POSITION = "
E_T_STD_COND = "
E_T_IND_COND = "
.



IMPORTING Parameters details for BKK_COND_OVERVIEW_INT_PREP

I_CONDGR_CAT -

Data type: TBKK85-CONDGR_CAT
Optional: No
Call by Reference: No ( called with pass by value option)

I_EST_COND - Fixing Standard Conditions

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

I_EST_DATE - Date and Time; Current (Application Server) Date

Data type: SY-DATUM
Optional: Yes
Call by Reference: Yes

I_DEPOSIT - Contract Amount, Deposit

Data type: BKKTERM-DEPOSIT
Optional: Yes
Call by Reference: Yes

I_SKIP_MESSAGE_HANDLER - Data Element for BOOLE Domain: TRUE (='X') and FALSE (=' ')

Data type: BOOLE-BOOLE
Default: SPACE
Optional: Yes
Call by Reference: Yes

I_TAB_PERIOD -

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

I_S_BKKTERM - Term Agreement for Fixed-Term Deposit and Installmt Savings

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

I_CONDAREA -

Data type: BKK83-CONDAREA
Optional: No
Call by Reference: No ( called with pass by value option)

I_CONDGR -

Data type: BKK83-CONDGR
Optional: No
Call by Reference: No ( called with pass by value option)

I_BKKRS -

Data type: BKK42-BKKRS
Optional: No
Call by Reference: No ( called with pass by value option)

I_ACNUM_INT -

Data type: BKK42-ACNUM_INT
Optional: No
Call by Reference: No ( called with pass by value option)

I_CURR -

Data type: BKK81-CURR
Optional: No
Call by Reference: No ( called with pass by value option)

I_START_DATE -

Data type: SY-DATUM
Default: SY-DATUM
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_END_DATE -

Data type: SY-DATUM
Default: SY-DATUM
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_FLG_NO_IR_HISTORY - Flag: No Interest Rate History

Data type: BKK_FLG
Optional: Yes
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for BKK_COND_OVERVIEW_INT_PREP

I_T_STD_CONDITION -

Data type: IBKK91
Optional: No
Call by Reference: No ( called with pass by value option)

I_T_STD_POSITION -

Data type: IBKK92
Optional: No
Call by Reference: No ( called with pass by value option)

I_T_IND_CONDITION -

Data type: IBKK91
Optional: No
Call by Reference: No ( called with pass by value option)

I_T_IND_POSITION -

Data type: IBKK92
Optional: No
Call by Reference: No ( called with pass by value option)

E_T_STD_COND -

Data type: BKKC_T_STD_COND
Optional: No
Call by Reference: No ( called with pass by value option)

E_T_IND_COND -

Data type: BKKC_T_FIMA_COND
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for BKK_COND_OVERVIEW_INT_PREP 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_condgr_cat  TYPE TBKK85-CONDGR_CAT, "   
lt_i_t_std_condition  TYPE STANDARD TABLE OF IBKK91, "   
lv_i_est_cond  TYPE BKK_ESTCOND, "   
lv_i_est_date  TYPE SY-DATUM, "   
lv_i_deposit  TYPE BKKTERM-DEPOSIT, "   
lv_i_skip_message_handler  TYPE BOOLE-BOOLE, "   SPACE
lv_i_tab_period  TYPE BKKC_T_PERIOD, "   
lv_i_s_bkkterm  TYPE BKKTERM, "   
lv_i_condarea  TYPE BKK83-CONDAREA, "   
lt_i_t_std_position  TYPE STANDARD TABLE OF IBKK92, "   
lv_i_condgr  TYPE BKK83-CONDGR, "   
lt_i_t_ind_condition  TYPE STANDARD TABLE OF IBKK91, "   
lv_i_bkkrs  TYPE BKK42-BKKRS, "   
lt_i_t_ind_position  TYPE STANDARD TABLE OF IBKK92, "   
lv_i_acnum_int  TYPE BKK42-ACNUM_INT, "   
lt_e_t_std_cond  TYPE STANDARD TABLE OF BKKC_T_STD_COND, "   
lv_i_curr  TYPE BKK81-CURR, "   
lt_e_t_ind_cond  TYPE STANDARD TABLE OF BKKC_T_FIMA_COND, "   
lv_i_start_date  TYPE SY-DATUM, "   SY-DATUM
lv_i_end_date  TYPE SY-DATUM, "   SY-DATUM
lv_i_flg_no_ir_history  TYPE BKK_FLG. "   

  CALL FUNCTION 'BKK_COND_OVERVIEW_INT_PREP'  "Format Interest Conditions for the Overview List
    EXPORTING
         I_CONDGR_CAT = lv_i_condgr_cat
         I_EST_COND = lv_i_est_cond
         I_EST_DATE = lv_i_est_date
         I_DEPOSIT = lv_i_deposit
         I_SKIP_MESSAGE_HANDLER = lv_i_skip_message_handler
         I_TAB_PERIOD = lv_i_tab_period
         I_S_BKKTERM = lv_i_s_bkkterm
         I_CONDAREA = lv_i_condarea
         I_CONDGR = lv_i_condgr
         I_BKKRS = lv_i_bkkrs
         I_ACNUM_INT = lv_i_acnum_int
         I_CURR = lv_i_curr
         I_START_DATE = lv_i_start_date
         I_END_DATE = lv_i_end_date
         I_FLG_NO_IR_HISTORY = lv_i_flg_no_ir_history
    TABLES
         I_T_STD_CONDITION = lt_i_t_std_condition
         I_T_STD_POSITION = lt_i_t_std_position
         I_T_IND_CONDITION = lt_i_t_ind_condition
         I_T_IND_POSITION = lt_i_t_ind_position
         E_T_STD_COND = lt_e_t_std_cond
         E_T_IND_COND = lt_e_t_ind_cond
. " BKK_COND_OVERVIEW_INT_PREP




ABAP code using 7.40 inline data declarations to call FM BKK_COND_OVERVIEW_INT_PREP

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 CONDGR_CAT FROM TBKK85 INTO @DATA(ld_i_condgr_cat).
 
 
 
"SELECT single DATUM FROM SY INTO @DATA(ld_i_est_date).
 
"SELECT single DEPOSIT FROM BKKTERM INTO @DATA(ld_i_deposit).
 
"SELECT single BOOLE FROM BOOLE INTO @DATA(ld_i_skip_message_handler).
DATA(ld_i_skip_message_handler) = ' '.
 
 
 
"SELECT single CONDAREA FROM BKK83 INTO @DATA(ld_i_condarea).
 
 
"SELECT single CONDGR FROM BKK83 INTO @DATA(ld_i_condgr).
 
 
"SELECT single BKKRS FROM BKK42 INTO @DATA(ld_i_bkkrs).
 
 
"SELECT single ACNUM_INT FROM BKK42 INTO @DATA(ld_i_acnum_int).
 
 
"SELECT single CURR FROM BKK81 INTO @DATA(ld_i_curr).
 
 
"SELECT single DATUM FROM SY INTO @DATA(ld_i_start_date).
DATA(ld_i_start_date) = SY-DATUM.
 
"SELECT single DATUM FROM SY INTO @DATA(ld_i_end_date).
DATA(ld_i_end_date) = SY-DATUM.
 
 


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!