BKK_COND_INT_FIELDATTR_READ 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_INT_FIELDATTR_READ into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
FB8B
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'BKK_COND_INT_FIELDATTR_READ' "Read Field Control
EXPORTING
i_condcatg = " tbkk89-condcatg
* i_attr_cond = " tbkk89-attr_cond
* i_list_cond = " tbkk89-list_cond
* i_zero_cond = " tbkk89-zero_cond
* i_attr_pos = " tbkk89-attr_pos
* i_list_pos = " tbkk89-list_pos
* i_zero_pos = " tbkk89-zero_pos
TABLES
t_attribute = " ibkk9e
. " BKK_COND_INT_FIELDATTR_READ
The ABAP code below is a full code listing to execute function module BKK_COND_INT_FIELDATTR_READ 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_t_attribute | TYPE STANDARD TABLE OF IBKK9E,"TABLES PARAM |
| wa_t_attribute | LIKE LINE OF it_t_attribute . |
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_condcatg | TYPE TBKK89-CONDCATG , |
| it_t_attribute | TYPE STANDARD TABLE OF IBKK9E , |
| wa_t_attribute | LIKE LINE OF it_t_attribute, |
| ld_i_attr_cond | TYPE TBKK89-ATTR_COND , |
| ld_i_list_cond | TYPE TBKK89-LIST_COND , |
| ld_i_zero_cond | TYPE TBKK89-ZERO_COND , |
| ld_i_attr_pos | TYPE TBKK89-ATTR_POS , |
| ld_i_list_pos | TYPE TBKK89-LIST_POS , |
| ld_i_zero_pos | TYPE TBKK89-ZERO_POS . |
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_INT_FIELDATTR_READ or its description.
BKK_COND_INT_FIELDATTR_READ - Read Field Control BKK_COND_INT_FIELDATTR_MNTN - Edit Field Control BKK_COND_INT_FIELDATTR_LIST - Field Control Overview List BKK_COND_INT_FIELDATTR_INDEX - Determine Index for Table Field BKK_COND_INTMET_GET - Read Short Text for Interest Calculation Method BKK_COND_INTERIM_RESULT_GET - Output Interim Results for Test