SAP BBP_IV_REF_OBJ_GET Function Module for Ermitteln der Relation auf PO/INVD
BBP_IV_REF_OBJ_GET is a standard bbp iv ref obj get SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Ermitteln der Relation auf PO/INVD 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 bbp iv ref obj get FM, simply by entering the name BBP_IV_REF_OBJ_GET into the relevant SAP transaction such as SE37 or SE38.
Function Group: BBP_IV2
Program Name: SAPLBBP_IV2
Main Program: SAPLBBP_IV2
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function BBP_IV_REF_OBJ_GET 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_IV_REF_OBJ_GET'"Ermitteln der Relation auf PO/INVD.
EXPORTING
IT_ITEM = "Schnittstelle Positions-Daten Rechnung Anl/Prüf/Änd-Fall
* IT_HUB_IREL = "Tabellentyp zu BBP_PDS_IVHUB_IREL
* IV_LOG_SYSTEM = "BBP IV header structure
* IV_WITH_ITEM_REF = "Mit Positionsreferenzen
* IV_CONSIDER_SELECTION = ' ' "Nicht selektierte Positionen werden für Ermittlung von ev* berücksichtigt
IMPORTING
EV_REFOBJ_TYPE = "Objekttyp
EV_REFOBJ_LOG_SYSTEM = "Business Document Service: ID des logischen Systems
ET_REFOBJ_KEYS = "Schlüsselfelder für Lean- oder Backend-Dokument
IMPORTING Parameters details for BBP_IV_REF_OBJ_GET
IT_ITEM - Schnittstelle Positions-Daten Rechnung Anl/Prüf/Änd-Fall
Data type: BBPT_PD_INV_ITEM_DOptional: No
Call by Reference: Yes
IT_HUB_IREL - Tabellentyp zu BBP_PDS_IVHUB_IREL
Data type: BBPT_IV_ITEM_RELOptional: Yes
Call by Reference: Yes
IV_LOG_SYSTEM - BBP IV header structure
Data type: BE_LOG_SYSTEMOptional: Yes
Call by Reference: Yes
IV_WITH_ITEM_REF - Mit Positionsreferenzen
Data type: XFELDOptional: Yes
Call by Reference: Yes
IV_CONSIDER_SELECTION - Nicht selektierte Positionen werden für Ermittlung von ev* berücksichtigt
Data type: XFELDDefault: SPACE
Optional: No
Call by Reference: Yes
EXPORTING Parameters details for BBP_IV_REF_OBJ_GET
EV_REFOBJ_TYPE - Objekttyp
Data type: SWO_OBJTYPOptional: No
Call by Reference: Yes
EV_REFOBJ_LOG_SYSTEM - Business Document Service: ID des logischen Systems
Data type: BBP_LOGSYSOptional: No
Call by Reference: Yes
ET_REFOBJ_KEYS - Schlüsselfelder für Lean- oder Backend-Dokument
Data type: BBPT_OBJECT_KEYOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for BBP_IV_REF_OBJ_GET 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_it_item | TYPE BBPT_PD_INV_ITEM_D, " | |||
| lv_ev_refobj_type | TYPE SWO_OBJTYP, " | |||
| lv_it_hub_irel | TYPE BBPT_IV_ITEM_REL, " | |||
| lv_ev_refobj_log_system | TYPE BBP_LOGSYS, " | |||
| lv_iv_log_system | TYPE BE_LOG_SYSTEM, " | |||
| lv_et_refobj_keys | TYPE BBPT_OBJECT_KEY, " | |||
| lv_iv_with_item_ref | TYPE XFELD, " | |||
| lv_iv_consider_selection | TYPE XFELD. " SPACE |
|   CALL FUNCTION 'BBP_IV_REF_OBJ_GET' "Ermitteln der Relation auf PO/INVD |
| EXPORTING | ||
| IT_ITEM | = lv_it_item | |
| IT_HUB_IREL | = lv_it_hub_irel | |
| IV_LOG_SYSTEM | = lv_iv_log_system | |
| IV_WITH_ITEM_REF | = lv_iv_with_item_ref | |
| IV_CONSIDER_SELECTION | = lv_iv_consider_selection | |
| IMPORTING | ||
| EV_REFOBJ_TYPE | = lv_ev_refobj_type | |
| EV_REFOBJ_LOG_SYSTEM | = lv_ev_refobj_log_system | |
| ET_REFOBJ_KEYS | = lv_et_refobj_keys | |
| . " BBP_IV_REF_OBJ_GET | ||
ABAP code using 7.40 inline data declarations to call FM BBP_IV_REF_OBJ_GET
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.| DATA(ld_iv_consider_selection) | = ' '. | |||
Search for further information about these or an SAP related objects