SAP J_1BNFE_CREATE_GOODS_RECEIPT Function Module for Create Goods Receipt from Inbound Delivery
J_1BNFE_CREATE_GOODS_RECEIPT is a standard j 1bnfe create goods receipt SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Create Goods Receipt from Inbound Delivery 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 j 1bnfe create goods receipt FM, simply by entering the name J_1BNFE_CREATE_GOODS_RECEIPT into the relevant SAP transaction such as SE37 or SE38.
Function Group: J_1B_NFE_IN
Program Name: SAPLJ_1B_NFE_IN
Main Program: SAPLJ_1B_NFE_IN
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function J_1BNFE_CREATE_GOODS_RECEIPT 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 'J_1BNFE_CREATE_GOODS_RECEIPT'"Create Goods Receipt from Inbound Delivery.
EXPORTING
I_INBOUND_DELIVERY = "Sales and Distribution Document Number
IMPORTING
E_MATERIALDOCUMENT = "Number of Material Document
E_MATDOCUMENTYEAR = "Material Document Year
TABLES
* IT_NFE_RTP = "NF-e incoming: Returnable Packaging
ET_BAPIRET2 = "Table with BAPI Return Information
* IT_MAT_PROVIDED = "NF-e incoming Material Line
IMPORTING Parameters details for J_1BNFE_CREATE_GOODS_RECEIPT
I_INBOUND_DELIVERY - Sales and Distribution Document Number
Data type: VBELNOptional: No
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for J_1BNFE_CREATE_GOODS_RECEIPT
E_MATERIALDOCUMENT - Number of Material Document
Data type: MBLNROptional: No
Call by Reference: No ( called with pass by value option)
E_MATDOCUMENTYEAR - Material Document Year
Data type: MJAHROptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for J_1BNFE_CREATE_GOODS_RECEIPT
IT_NFE_RTP - NF-e incoming: Returnable Packaging
Data type: J_1BNFE_RETURN_PACK_TABOptional: Yes
Call by Reference: Yes
ET_BAPIRET2 - Table with BAPI Return Information
Data type: BAPIRETTABOptional: No
Call by Reference: Yes
IT_MAT_PROVIDED - NF-e incoming Material Line
Data type: J_1BNFE_MATERIAL_LIN_TABOptional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for J_1BNFE_CREATE_GOODS_RECEIPT 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: | ||||
| lt_it_nfe_rtp | TYPE STANDARD TABLE OF J_1BNFE_RETURN_PACK_TAB, " | |||
| lv_e_materialdocument | TYPE MBLNR, " | |||
| lv_i_inbound_delivery | TYPE VBELN, " | |||
| lt_et_bapiret2 | TYPE STANDARD TABLE OF BAPIRETTAB, " | |||
| lv_e_matdocumentyear | TYPE MJAHR, " | |||
| lt_it_mat_provided | TYPE STANDARD TABLE OF J_1BNFE_MATERIAL_LIN_TAB. " |
|   CALL FUNCTION 'J_1BNFE_CREATE_GOODS_RECEIPT' "Create Goods Receipt from Inbound Delivery |
| EXPORTING | ||
| I_INBOUND_DELIVERY | = lv_i_inbound_delivery | |
| IMPORTING | ||
| E_MATERIALDOCUMENT | = lv_e_materialdocument | |
| E_MATDOCUMENTYEAR | = lv_e_matdocumentyear | |
| TABLES | ||
| IT_NFE_RTP | = lt_it_nfe_rtp | |
| ET_BAPIRET2 | = lt_et_bapiret2 | |
| IT_MAT_PROVIDED | = lt_it_mat_provided | |
| . " J_1BNFE_CREATE_GOODS_RECEIPT | ||
ABAP code using 7.40 inline data declarations to call FM J_1BNFE_CREATE_GOODS_RECEIPT
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