SAP BBP_INB_DELIVERY_GETLIST Function Module for NOTRANSL: Inbound Delivery (ASN) Get List
BBP_INB_DELIVERY_GETLIST is a standard bbp inb delivery getlist SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: Inbound Delivery (ASN) Get List 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 inb delivery getlist FM, simply by entering the name BBP_INB_DELIVERY_GETLIST into the relevant SAP transaction such as SE37 or SE38.
Function Group: BBPS
Program Name: SAPLBBPS
Main Program:
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function BBP_INB_DELIVERY_GETLIST 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_INB_DELIVERY_GETLIST'"NOTRANSL: Inbound Delivery (ASN) Get List.
EXPORTING
IF_VENDOR = "
* IF_DELIV_EXT = "
* IF_DELIVERY = "
* IF_DATE = "
* IF_PO_NUMBER = "
* IF_MATERIAL = "
TABLES
ET_INB_DELIVERY_LIST = "
RETURN = "
IMPORTING Parameters details for BBP_INB_DELIVERY_GETLIST
IF_VENDOR -
Data type: BAPIEKKO-VENDOROptional: No
Call by Reference: No ( called with pass by value option)
IF_DELIV_EXT -
Data type: LIKP-VERUROptional: Yes
Call by Reference: No ( called with pass by value option)
IF_DELIVERY -
Data type: LIKP-VBELNOptional: Yes
Call by Reference: No ( called with pass by value option)
IF_DATE -
Data type: LIKP-LFDATOptional: Yes
Call by Reference: No ( called with pass by value option)
IF_PO_NUMBER -
Data type: BAPIEKKO-PO_NUMBEROptional: Yes
Call by Reference: No ( called with pass by value option)
IF_MATERIAL -
Data type: LIPS-MATNROptional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for BBP_INB_DELIVERY_GETLIST
ET_INB_DELIVERY_LIST -
Data type: BBP_INBD_LOptional: No
Call by Reference: No ( called with pass by value option)
RETURN -
Data type: BAPIRETURNOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for BBP_INB_DELIVERY_GETLIST 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_if_vendor | TYPE BAPIEKKO-VENDOR, " | |||
| lt_et_inb_delivery_list | TYPE STANDARD TABLE OF BBP_INBD_L, " | |||
| lt_return | TYPE STANDARD TABLE OF BAPIRETURN, " | |||
| lv_if_deliv_ext | TYPE LIKP-VERUR, " | |||
| lv_if_delivery | TYPE LIKP-VBELN, " | |||
| lv_if_date | TYPE LIKP-LFDAT, " | |||
| lv_if_po_number | TYPE BAPIEKKO-PO_NUMBER, " | |||
| lv_if_material | TYPE LIPS-MATNR. " |
|   CALL FUNCTION 'BBP_INB_DELIVERY_GETLIST' "NOTRANSL: Inbound Delivery (ASN) Get List |
| EXPORTING | ||
| IF_VENDOR | = lv_if_vendor | |
| IF_DELIV_EXT | = lv_if_deliv_ext | |
| IF_DELIVERY | = lv_if_delivery | |
| IF_DATE | = lv_if_date | |
| IF_PO_NUMBER | = lv_if_po_number | |
| IF_MATERIAL | = lv_if_material | |
| TABLES | ||
| ET_INB_DELIVERY_LIST | = lt_et_inb_delivery_list | |
| RETURN | = lt_return | |
| . " BBP_INB_DELIVERY_GETLIST | ||
ABAP code using 7.40 inline data declarations to call FM BBP_INB_DELIVERY_GETLIST
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 VENDOR FROM BAPIEKKO INTO @DATA(ld_if_vendor). | ||||
| "SELECT single VERUR FROM LIKP INTO @DATA(ld_if_deliv_ext). | ||||
| "SELECT single VBELN FROM LIKP INTO @DATA(ld_if_delivery). | ||||
| "SELECT single LFDAT FROM LIKP INTO @DATA(ld_if_date). | ||||
| "SELECT single PO_NUMBER FROM BAPIEKKO INTO @DATA(ld_if_po_number). | ||||
| "SELECT single MATNR FROM LIPS INTO @DATA(ld_if_material). | ||||
Search for further information about these or an SAP related objects