SAP ISU_BBP_EABPS_SELECT Function Module for Selection of Lines from Internal Table (Structure EABPS)
ISU_BBP_EABPS_SELECT is a standard isu bbp eabps 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 Selection of Lines from Internal Table (Structure EABPS) 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 bbp eabps select FM, simply by entering the name ISU_BBP_EABPS_SELECT into the relevant SAP transaction such as SE37 or SE38.
Function Group: E25P
Program Name: SAPLE25P
Main Program: SAPLE25P
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISU_BBP_EABPS_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_BBP_EABPS_SELECT'"Selection of Lines from Internal Table (Structure EABPS).
EXPORTING
* X_FAEDN = "Due Date for Net Payment
* X_VORAUSZAHL = "Budget Billing Plan Item Is Advance Payment
* X_VTREF = "Reference Specifications from Contract
* X_FAEDN_AB = "Due Date for Net Payment
* X_GRBBP = "Budget Billing: Grouping Key for Tax Determination Code
* X_TVORG = "Subtransaction for Line Item
* X_LOGNO = "Line Number of Budget Billing Plan
* X_LSTMT = "BBP procedure: No payment plan amountin last month
TABLES
XT_EABPS = "Sub-BB Plan
YT_EABPS = "Sub-BB Plan
IMPORTING Parameters details for ISU_BBP_EABPS_SELECT
X_FAEDN - Due Date for Net Payment
Data type: EABPS-FAEDNOptional: Yes
Call by Reference: Yes
X_VORAUSZAHL - Budget Billing Plan Item Is Advance Payment
Data type: EABPS-VORAUSZAHLOptional: Yes
Call by Reference: Yes
X_VTREF - Reference Specifications from Contract
Data type: EABPS-VTREFOptional: Yes
Call by Reference: Yes
X_FAEDN_AB - Due Date for Net Payment
Data type: EABPS-FAEDNOptional: Yes
Call by Reference: Yes
X_GRBBP - Budget Billing: Grouping Key for Tax Determination Code
Data type: EABPS-GRBBPOptional: Yes
Call by Reference: Yes
X_TVORG - Subtransaction for Line Item
Data type: EABPS-TVORGOptional: Yes
Call by Reference: Yes
X_LOGNO - Line Number of Budget Billing Plan
Data type: EABPS-LOGNOOptional: Yes
Call by Reference: Yes
X_LSTMT - BBP procedure: No payment plan amountin last month
Data type: TE015-LSTMTOptional: Yes
Call by Reference: Yes
TABLES Parameters details for ISU_BBP_EABPS_SELECT
XT_EABPS - Sub-BB Plan
Data type: EABPSOptional: No
Call by Reference: Yes
YT_EABPS - Sub-BB Plan
Data type: EABPSOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for ISU_BBP_EABPS_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_x_faedn | TYPE EABPS-FAEDN, " | |||
| lt_xt_eabps | TYPE STANDARD TABLE OF EABPS, " | |||
| lt_yt_eabps | TYPE STANDARD TABLE OF EABPS, " | |||
| lv_x_vorauszahl | TYPE EABPS-VORAUSZAHL, " | |||
| lv_x_vtref | TYPE EABPS-VTREF, " | |||
| lv_x_faedn_ab | TYPE EABPS-FAEDN, " | |||
| lv_x_grbbp | TYPE EABPS-GRBBP, " | |||
| lv_x_tvorg | TYPE EABPS-TVORG, " | |||
| lv_x_logno | TYPE EABPS-LOGNO, " | |||
| lv_x_lstmt | TYPE TE015-LSTMT. " |
|   CALL FUNCTION 'ISU_BBP_EABPS_SELECT' "Selection of Lines from Internal Table (Structure EABPS) |
| EXPORTING | ||
| X_FAEDN | = lv_x_faedn | |
| X_VORAUSZAHL | = lv_x_vorauszahl | |
| X_VTREF | = lv_x_vtref | |
| X_FAEDN_AB | = lv_x_faedn_ab | |
| X_GRBBP | = lv_x_grbbp | |
| X_TVORG | = lv_x_tvorg | |
| X_LOGNO | = lv_x_logno | |
| X_LSTMT | = lv_x_lstmt | |
| TABLES | ||
| XT_EABPS | = lt_xt_eabps | |
| YT_EABPS | = lt_yt_eabps | |
| . " ISU_BBP_EABPS_SELECT | ||
ABAP code using 7.40 inline data declarations to call FM ISU_BBP_EABPS_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 FAEDN FROM EABPS INTO @DATA(ld_x_faedn). | ||||
| "SELECT single VORAUSZAHL FROM EABPS INTO @DATA(ld_x_vorauszahl). | ||||
| "SELECT single VTREF FROM EABPS INTO @DATA(ld_x_vtref). | ||||
| "SELECT single FAEDN FROM EABPS INTO @DATA(ld_x_faedn_ab). | ||||
| "SELECT single GRBBP FROM EABPS INTO @DATA(ld_x_grbbp). | ||||
| "SELECT single TVORG FROM EABPS INTO @DATA(ld_x_tvorg). | ||||
| "SELECT single LOGNO FROM EABPS INTO @DATA(ld_x_logno). | ||||
| "SELECT single LSTMT FROM TE015 INTO @DATA(ld_x_lstmt). | ||||
Search for further information about these or an SAP related objects