SAP BKK_COND_IND_SEL_FOR_CLC Function Module for Selection of the Conditions of a Bank Account for Computer









BKK_COND_IND_SEL_FOR_CLC is a standard bkk cond ind sel for clc SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Selection of the Conditions of a Bank Account for Computer 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 ind sel for clc FM, simply by entering the name BKK_COND_IND_SEL_FOR_CLC into the relevant SAP transaction such as SE37 or SE38.

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



Function BKK_COND_IND_SEL_FOR_CLC 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_IND_SEL_FOR_CLC'"Selection of the Conditions of a Bank Account for Computer
EXPORTING
I_BKKRS = "
* I_XNOTEXT = 'X' "
* I_NO_MESSAGE = '' "If 'X', do not show warning message
I_CONDGR_CAT = "
* I_CONDCATG = "
I_ACNUM_INT = "
I_CURR = "
I_START_DATE = "
I_END_DATE = "
* I_XSIMULATE = "
* I_TRACE = "

TABLES
T_CONDITION = "
T_POSITION = "
.



IMPORTING Parameters details for BKK_COND_IND_SEL_FOR_CLC

I_BKKRS -

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

I_XNOTEXT -

Data type: BOOLE-BOOLE
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_NO_MESSAGE - If 'X', do not show warning message

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

I_CONDGR_CAT -

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

I_CONDCATG -

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

I_ACNUM_INT -

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

I_CURR -

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

I_START_DATE -

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

I_END_DATE -

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

I_XSIMULATE -

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

I_TRACE -

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

TABLES Parameters details for BKK_COND_IND_SEL_FOR_CLC

T_CONDITION -

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

T_POSITION -

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

Copy and paste ABAP code example for BKK_COND_IND_SEL_FOR_CLC 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_bkkrs  TYPE TBKK01-BKKRS, "   
lt_t_condition  TYPE STANDARD TABLE OF IBKK91, "   
lv_i_xnotext  TYPE BOOLE-BOOLE, "   'X'
lv_i_no_message  TYPE BOOLE-BOOLE, "   ''
lt_t_position  TYPE STANDARD TABLE OF IBKK92, "   
lv_i_condgr_cat  TYPE TBKK81-CONDGR_CAT, "   
lv_i_condcatg  TYPE TBKK81-CONDCATG, "   
lv_i_acnum_int  TYPE BKK40-ACNUM_INT, "   
lv_i_curr  TYPE TCURC-WAERS, "   
lv_i_start_date  TYPE SY-DATUM, "   
lv_i_end_date  TYPE SY-DATUM, "   
lv_i_xsimulate  TYPE IBKK9P-SIM_RUN, "   
lv_i_trace  TYPE IBKKM9-TRACE. "   

  CALL FUNCTION 'BKK_COND_IND_SEL_FOR_CLC'  "Selection of the Conditions of a Bank Account for Computer
    EXPORTING
         I_BKKRS = lv_i_bkkrs
         I_XNOTEXT = lv_i_xnotext
         I_NO_MESSAGE = lv_i_no_message
         I_CONDGR_CAT = lv_i_condgr_cat
         I_CONDCATG = lv_i_condcatg
         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_XSIMULATE = lv_i_xsimulate
         I_TRACE = lv_i_trace
    TABLES
         T_CONDITION = lt_t_condition
         T_POSITION = lt_t_position
. " BKK_COND_IND_SEL_FOR_CLC




ABAP code using 7.40 inline data declarations to call FM BKK_COND_IND_SEL_FOR_CLC

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 BKKRS FROM TBKK01 INTO @DATA(ld_i_bkkrs).
 
 
"SELECT single BOOLE FROM BOOLE INTO @DATA(ld_i_xnotext).
DATA(ld_i_xnotext) = 'X'.
 
"SELECT single BOOLE FROM BOOLE INTO @DATA(ld_i_no_message).
DATA(ld_i_no_message) = ''.
 
 
"SELECT single CONDGR_CAT FROM TBKK81 INTO @DATA(ld_i_condgr_cat).
 
"SELECT single CONDCATG FROM TBKK81 INTO @DATA(ld_i_condcatg).
 
"SELECT single ACNUM_INT FROM BKK40 INTO @DATA(ld_i_acnum_int).
 
"SELECT single WAERS FROM TCURC INTO @DATA(ld_i_curr).
 
"SELECT single DATUM FROM SY INTO @DATA(ld_i_start_date).
 
"SELECT single DATUM FROM SY INTO @DATA(ld_i_end_date).
 
"SELECT single SIM_RUN FROM IBKK9P INTO @DATA(ld_i_xsimulate).
 
"SELECT single TRACE FROM IBKKM9 INTO @DATA(ld_i_trace).
 


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!