SAP BKK_CONDAREA_READ Function Module for Export Condition Area From Assignment Table









BKK_CONDAREA_READ is a standard bkk condarea read SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Export Condition Area From Assignment Table 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 condarea read FM, simply by entering the name BKK_CONDAREA_READ into the relevant SAP transaction such as SE37 or SE38.

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



Function BKK_CONDAREA_READ 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_CONDAREA_READ'"Export Condition Area From Assignment Table
EXPORTING
I_COND_ASSIG = "

IMPORTING
E_CONDAREA = "
E_RC = "

TABLES
T_ASSIGNMENT_FIELDS = "
.



IMPORTING Parameters details for BKK_CONDAREA_READ

I_COND_ASSIG -

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

EXPORTING Parameters details for BKK_CONDAREA_READ

E_CONDAREA -

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

E_RC -

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

TABLES Parameters details for BKK_CONDAREA_READ

T_ASSIGNMENT_FIELDS -

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

Copy and paste ABAP code example for BKK_CONDAREA_READ 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_condarea  TYPE TBKK80-CONDAREA, "   
lv_i_cond_assig  TYPE TBKK80C-COND_ASSIG, "   
lt_t_assignment_fields  TYPE STANDARD TABLE OF IBKK80, "   
lv_e_rc  TYPE SY-SUBRC. "   

  CALL FUNCTION 'BKK_CONDAREA_READ'  "Export Condition Area From Assignment Table
    EXPORTING
         I_COND_ASSIG = lv_i_cond_assig
    IMPORTING
         E_CONDAREA = lv_e_condarea
         E_RC = lv_e_rc
    TABLES
         T_ASSIGNMENT_FIELDS = lt_t_assignment_fields
. " BKK_CONDAREA_READ




ABAP code using 7.40 inline data declarations to call FM BKK_CONDAREA_READ

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 CONDAREA FROM TBKK80 INTO @DATA(ld_e_condarea).
 
"SELECT single COND_ASSIG FROM TBKK80C INTO @DATA(ld_i_cond_assig).
 
 
"SELECT single SUBRC FROM SY INTO @DATA(ld_e_rc).
 


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!