SAP ISU_DB_DBERDLB_SELECT Function Module for Select Billing Document Number for Invoice
ISU_DB_DBERDLB_SELECT is a standard isu db dberdlb select SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Select Billing Document Number for Invoice 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 isu db dberdlb select FM, simply by entering the name ISU_DB_DBERDLB_SELECT into the relevant SAP transaction such as SE37 or SE38.
Function Group: EVDB
Program Name: SAPLEVDB
Main Program: SAPLEVDB
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISU_DB_DBERDLB_SELECT 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 'ISU_DB_DBERDLB_SELECT'"Select Billing Document Number for Invoice.
EXPORTING
I_PRINTDOC = "Number of Print Document
I_PRINTDOCLINE = "Billing line item for billing documents
IMPORTING
E_BILLDOC = "Number of Print Document
E_BILLDOCLINE = "
E_VERTRAG = "Contract
E_ABPOPBEL = "
EXCEPTIONS
NOT_FOUND = 1 SYSTEM_ERROR = 2
IMPORTING Parameters details for ISU_DB_DBERDLB_SELECT
I_PRINTDOC - Number of Print Document
Data type: DBERDLB-PRINTDOCOptional: No
Call by Reference: Yes
I_PRINTDOCLINE - Billing line item for billing documents
Data type: DBERDLB-PRINTDOCLINEOptional: No
Call by Reference: Yes
EXPORTING Parameters details for ISU_DB_DBERDLB_SELECT
E_BILLDOC - Number of Print Document
Data type: E_BELNROptional: No
Call by Reference: Yes
E_BILLDOCLINE -
Data type: BELZEILEOptional: No
Call by Reference: Yes
E_VERTRAG - Contract
Data type: VERTRAGOptional: No
Call by Reference: Yes
E_ABPOPBEL -
Data type: ABPLANNROptional: No
Call by Reference: Yes
EXCEPTIONS details
NOT_FOUND -
Data type:Optional: No
Call by Reference: Yes
SYSTEM_ERROR -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for ISU_DB_DBERDLB_SELECT 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_billdoc | TYPE E_BELNR, " | |||
| lv_not_found | TYPE E_BELNR, " | |||
| lv_i_printdoc | TYPE DBERDLB-PRINTDOC, " | |||
| lv_system_error | TYPE DBERDLB, " | |||
| lv_e_billdocline | TYPE BELZEILE, " | |||
| lv_i_printdocline | TYPE DBERDLB-PRINTDOCLINE, " | |||
| lv_e_vertrag | TYPE VERTRAG, " | |||
| lv_e_abpopbel | TYPE ABPLANNR. " |
|   CALL FUNCTION 'ISU_DB_DBERDLB_SELECT' "Select Billing Document Number for Invoice |
| EXPORTING | ||
| I_PRINTDOC | = lv_i_printdoc | |
| I_PRINTDOCLINE | = lv_i_printdocline | |
| IMPORTING | ||
| E_BILLDOC | = lv_e_billdoc | |
| E_BILLDOCLINE | = lv_e_billdocline | |
| E_VERTRAG | = lv_e_vertrag | |
| E_ABPOPBEL | = lv_e_abpopbel | |
| EXCEPTIONS | ||
| NOT_FOUND = 1 | ||
| SYSTEM_ERROR = 2 | ||
| . " ISU_DB_DBERDLB_SELECT | ||
ABAP code using 7.40 inline data declarations to call FM ISU_DB_DBERDLB_SELECT
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 PRINTDOC FROM DBERDLB INTO @DATA(ld_i_printdoc). | ||||
| "SELECT single PRINTDOCLINE FROM DBERDLB INTO @DATA(ld_i_printdocline). | ||||
Search for further information about these or an SAP related objects