SAP BBP_PD_INV_BE_REF_READ Function Module for
BBP_PD_INV_BE_REF_READ is a standard bbp pd inv be ref read SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 bbp pd inv be ref read FM, simply by entering the name BBP_PD_INV_BE_REF_READ into the relevant SAP transaction such as SE37 or SE38.
Function Group: BBP_PD_INV
Program Name: SAPLBBP_PD_INV
Main Program: SAPLBBP_PD_INV
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function BBP_PD_INV_BE_REF_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 'BBP_PD_INV_BE_REF_READ'".
EXPORTING
IV_PO_OBJ_ID = "
IV_BE_LOG_SYSTEM = "
IV_SUBTYPE = "
* IV_SUBDCIND = "
IV_PO_OBJ_ITEM = "
IV_PO_OBJ_SBITM = "
IV_BE_COND_TYPE = "
IV_BE_COND_STEP = "
IV_BE_COND_COUNTER = "
IV_CF_OBJ_ID = "
IV_CF_OBJ_ITEM = "
IV_CF_OBJ_FYEAR = "
IMPORTING
ES_ITMPLN = "
IMPORTING Parameters details for BBP_PD_INV_BE_REF_READ
IV_PO_OBJ_ID -
Data type: BE_REFOBJOptional: No
Call by Reference: Yes
IV_BE_LOG_SYSTEM -
Data type: BE_LOG_SYSTEMOptional: No
Call by Reference: Yes
IV_SUBTYPE -
Data type: BBP_H_SUBTYPEOptional: No
Call by Reference: Yes
IV_SUBDCIND -
Data type: BBP_SUBDCINDOptional: Yes
Call by Reference: Yes
IV_PO_OBJ_ITEM -
Data type: BE_REFOBJ_ITEMOptional: No
Call by Reference: Yes
IV_PO_OBJ_SBITM -
Data type: BE_REFOBJ_SBITMOptional: No
Call by Reference: Yes
IV_BE_COND_TYPE -
Data type: BBP_BE_COND_TYPEOptional: No
Call by Reference: Yes
IV_BE_COND_STEP -
Data type: BBP_STUNROptional: No
Call by Reference: Yes
IV_BE_COND_COUNTER -
Data type: BBP_DZAEHKOptional: No
Call by Reference: Yes
IV_CF_OBJ_ID -
Data type: BE_REFOBJOptional: No
Call by Reference: Yes
IV_CF_OBJ_ITEM -
Data type: BE_REFOBJ_ITEMOptional: No
Call by Reference: Yes
IV_CF_OBJ_FYEAR -
Data type: BE_FI_YEAROptional: No
Call by Reference: Yes
EXPORTING Parameters details for BBP_PD_INV_BE_REF_READ
ES_ITMPLN -
Data type: BBP_PDS_ITMPLANOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for BBP_PD_INV_BE_REF_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_es_itmpln | TYPE BBP_PDS_ITMPLAN, " | |||
| lv_iv_po_obj_id | TYPE BE_REFOBJ, " | |||
| lv_iv_be_log_system | TYPE BE_LOG_SYSTEM, " | |||
| lv_iv_subtype | TYPE BBP_H_SUBTYPE, " | |||
| lv_iv_subdcind | TYPE BBP_SUBDCIND, " | |||
| lv_iv_po_obj_item | TYPE BE_REFOBJ_ITEM, " | |||
| lv_iv_po_obj_sbitm | TYPE BE_REFOBJ_SBITM, " | |||
| lv_iv_be_cond_type | TYPE BBP_BE_COND_TYPE, " | |||
| lv_iv_be_cond_step | TYPE BBP_STUNR, " | |||
| lv_iv_be_cond_counter | TYPE BBP_DZAEHK, " | |||
| lv_iv_cf_obj_id | TYPE BE_REFOBJ, " | |||
| lv_iv_cf_obj_item | TYPE BE_REFOBJ_ITEM, " | |||
| lv_iv_cf_obj_fyear | TYPE BE_FI_YEAR. " |
|   CALL FUNCTION 'BBP_PD_INV_BE_REF_READ' " |
| EXPORTING | ||
| IV_PO_OBJ_ID | = lv_iv_po_obj_id | |
| IV_BE_LOG_SYSTEM | = lv_iv_be_log_system | |
| IV_SUBTYPE | = lv_iv_subtype | |
| IV_SUBDCIND | = lv_iv_subdcind | |
| IV_PO_OBJ_ITEM | = lv_iv_po_obj_item | |
| IV_PO_OBJ_SBITM | = lv_iv_po_obj_sbitm | |
| IV_BE_COND_TYPE | = lv_iv_be_cond_type | |
| IV_BE_COND_STEP | = lv_iv_be_cond_step | |
| IV_BE_COND_COUNTER | = lv_iv_be_cond_counter | |
| IV_CF_OBJ_ID | = lv_iv_cf_obj_id | |
| IV_CF_OBJ_ITEM | = lv_iv_cf_obj_item | |
| IV_CF_OBJ_FYEAR | = lv_iv_cf_obj_fyear | |
| IMPORTING | ||
| ES_ITMPLN | = lv_es_itmpln | |
| . " BBP_PD_INV_BE_REF_READ | ||
ABAP code using 7.40 inline data declarations to call FM BBP_PD_INV_BE_REF_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.Search for further information about these or an SAP related objects