SAP NOR3_PO_READ_ITEMS_INVOICE_BE Function Module for Read PO items for Invoice entry in the backend system
NOR3_PO_READ_ITEMS_INVOICE_BE is a standard nor3 po read items invoice be SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Read PO items for Invoice entry in the backend system 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 nor3 po read items invoice be FM, simply by entering the name NOR3_PO_READ_ITEMS_INVOICE_BE into the relevant SAP transaction such as SE37 or SE38.
Function Group: BBP_BD_DRIVER_NOR3
Program Name: SAPLBBP_BD_DRIVER_NOR3
Main Program: SAPLBBP_BD_DRIVER_NOR3
Appliation area: M
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function NOR3_PO_READ_ITEMS_INVOICE_BE 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 'NOR3_PO_READ_ITEMS_INVOICE_BE'"Read PO items for Invoice entry in the backend system.
IMPORTING
E_RBKPV = "BBP structure rbkpv
TABLES
TI_PO_LIST = "bbp purchase order list for backend selection - META BAPI
* TE_DRSEG = "Return parameter
* TE_DRSEG_CO = "Control Record for META BAPI control
* TE_LIMIT = "Limitdaten der BlanketPO für die Rechnungsprüfung
* RETURN = "Returnparameter
* CONTROL_RECORD = "Steuersatz für META-BAPI-Steuerung
EXPORTING Parameters details for NOR3_PO_READ_ITEMS_INVOICE_BE
E_RBKPV - BBP structure rbkpv
Data type: BBPS_RBKPVOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for NOR3_PO_READ_ITEMS_INVOICE_BE
TI_PO_LIST - bbp purchase order list for backend selection - META BAPI
Data type: BBP_PO_LISTOptional: No
Call by Reference: No ( called with pass by value option)
TE_DRSEG - Return parameter
Data type: BBP_DRSEG_ECIOptional: Yes
Call by Reference: Yes
TE_DRSEG_CO - Control Record for META BAPI control
Data type: BBPS_DRSEG_CO_PIOptional: Yes
Call by Reference: Yes
TE_LIMIT - Limitdaten der BlanketPO für die Rechnungsprüfung
Data type: BBPS_RELIMITOptional: Yes
Call by Reference: Yes
RETURN - Returnparameter
Data type: BAPIRET2Optional: Yes
Call by Reference: No ( called with pass by value option)
CONTROL_RECORD - Steuersatz für META-BAPI-Steuerung
Data type: BBP_CONTROL_RECORDOptional: Yes
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for NOR3_PO_READ_ITEMS_INVOICE_BE 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_rbkpv | TYPE BBPS_RBKPV, " | |||
| lt_ti_po_list | TYPE STANDARD TABLE OF BBP_PO_LIST, " | |||
| lt_te_drseg | TYPE STANDARD TABLE OF BBP_DRSEG_ECI, " | |||
| lt_te_drseg_co | TYPE STANDARD TABLE OF BBPS_DRSEG_CO_PI, " | |||
| lt_te_limit | TYPE STANDARD TABLE OF BBPS_RELIMIT, " | |||
| lt_return | TYPE STANDARD TABLE OF BAPIRET2, " | |||
| lt_control_record | TYPE STANDARD TABLE OF BBP_CONTROL_RECORD. " |
|   CALL FUNCTION 'NOR3_PO_READ_ITEMS_INVOICE_BE' "Read PO items for Invoice entry in the backend system |
| IMPORTING | ||
| E_RBKPV | = lv_e_rbkpv | |
| TABLES | ||
| TI_PO_LIST | = lt_ti_po_list | |
| TE_DRSEG | = lt_te_drseg | |
| TE_DRSEG_CO | = lt_te_drseg_co | |
| TE_LIMIT | = lt_te_limit | |
| RETURN | = lt_return | |
| CONTROL_RECORD | = lt_control_record | |
| . " NOR3_PO_READ_ITEMS_INVOICE_BE | ||
ABAP code using 7.40 inline data declarations to call FM NOR3_PO_READ_ITEMS_INVOICE_BE
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