BKK_COND_REL_STD_INIT_WHERE is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name BKK_COND_REL_STD_INIT_WHERE into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
FB8I
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'BKK_COND_REL_STD_INIT_WHERE' "Set Up Where-Condition for Dynamic Select
EXPORTING
* i_condarea = " bkk81-condarea
i_condgr = " bkk83-condgr
i_condgr_cat = " bkk83-condgr_cat
* i_condcatg = " bkk81-condcatg
TABLES
e_t_where = " bkkc_t_where
e_t_condition = " ibkk91
e_t_position = " ibkk92
. " BKK_COND_REL_STD_INIT_WHERE
The ABAP code below is a full code listing to execute function module BKK_COND_REL_STD_INIT_WHERE including all data declarations. The code uses 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 original method of declaring data variables up front. 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).
| it_e_t_where | TYPE STANDARD TABLE OF BKKC_T_WHERE,"TABLES PARAM |
| wa_e_t_where | LIKE LINE OF it_e_t_where , |
| it_e_t_condition | TYPE STANDARD TABLE OF IBKK91,"TABLES PARAM |
| wa_e_t_condition | LIKE LINE OF it_e_t_condition , |
| it_e_t_position | TYPE STANDARD TABLE OF IBKK92,"TABLES PARAM |
| wa_e_t_position | LIKE LINE OF it_e_t_position . |
The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.
DATA:
| ld_i_condarea | TYPE BKK81-CONDAREA , |
| it_e_t_where | TYPE STANDARD TABLE OF BKKC_T_WHERE , |
| wa_e_t_where | LIKE LINE OF it_e_t_where, |
| ld_i_condgr | TYPE BKK83-CONDGR , |
| it_e_t_condition | TYPE STANDARD TABLE OF IBKK91 , |
| wa_e_t_condition | LIKE LINE OF it_e_t_condition, |
| ld_i_condgr_cat | TYPE BKK83-CONDGR_CAT , |
| it_e_t_position | TYPE STANDARD TABLE OF IBKK92 , |
| wa_e_t_position | LIKE LINE OF it_e_t_position, |
| ld_i_condcatg | TYPE BKK81-CONDCATG . |
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name BKK_COND_REL_STD_INIT_WHERE or its description.
BKK_COND_REL_STD_INIT_WHERE - Set Up Where-Condition for Dynamic Select BKK_COND_REL_STD_INIT - Initialization of Condition Release BKK_COND_REL_STD_CTL - Condition Release Control BKK_COND_REL_STD_COND_SELECT - Read and Lock Conditions BKK_COND_REL_STD_COND_SEARCH - Selection of Conditions to Be Released BKK_COND_REL_IN_TABLE - Set Release Indicator in Conditions