SAP EBPP_BD_GET_CONTACTS Function Module for Get contact history
EBPP_BD_GET_CONTACTS is a standard ebpp bd get contacts SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Get contact history 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 ebpp bd get contacts FM, simply by entering the name EBPP_BD_GET_CONTACTS into the relevant SAP transaction such as SE37 or SE38.
Function Group: APAR_EBPP_FIORI
Program Name: SAPLAPAR_EBPP_FIORI
Main Program: SAPLAPAR_EBPP_FIORI
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function EBPP_BD_GET_CONTACTS 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 'EBPP_BD_GET_CONTACTS'"Get contact history.
EXPORTING
I_CUST_PARAM = "General parameter for customer related search
I_INVOICE_PARAM = "Invoice parameter
* I_ODATA_PARAM = "ODATA parameter
IMPORTING
E_RETURN = "ABAP System Field: Return Code of ABAP Statements
E_TOTAL_NUM = "Natural number
E_DEBUG_INFO = "
TABLES
* T_MESSAGES = "Biller Direct: Messages
T_CONTACTS = "SAPscript: Text Lines
IMPORTING Parameters details for EBPP_BD_GET_CONTACTS
I_CUST_PARAM - General parameter for customer related search
Data type: EBPP_BD_CUST_PARAMOptional: No
Call by Reference: No ( called with pass by value option)
I_INVOICE_PARAM - Invoice parameter
Data type: EBPP_BD_INVOICE_PARAMOptional: No
Call by Reference: No ( called with pass by value option)
I_ODATA_PARAM - ODATA parameter
Data type: EBPP_BD_ODATA_PARAMOptional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for EBPP_BD_GET_CONTACTS
E_RETURN - ABAP System Field: Return Code of ABAP Statements
Data type: SY-SUBRCOptional: No
Call by Reference: No ( called with pass by value option)
E_TOTAL_NUM - Natural number
Data type: INT4Optional: No
Call by Reference: No ( called with pass by value option)
E_DEBUG_INFO -
Data type: STRINGOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for EBPP_BD_GET_CONTACTS
T_MESSAGES - Biller Direct: Messages
Data type: EBPP_MESSAGESOptional: Yes
Call by Reference: Yes
T_CONTACTS - SAPscript: Text Lines
Data type: TLINEOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for EBPP_BD_GET_CONTACTS 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_return | TYPE SY-SUBRC, " | |||
| lt_t_messages | TYPE STANDARD TABLE OF EBPP_MESSAGES, " | |||
| lv_i_cust_param | TYPE EBPP_BD_CUST_PARAM, " | |||
| lt_t_contacts | TYPE STANDARD TABLE OF TLINE, " | |||
| lv_e_total_num | TYPE INT4, " | |||
| lv_i_invoice_param | TYPE EBPP_BD_INVOICE_PARAM, " | |||
| lv_e_debug_info | TYPE STRING, " | |||
| lv_i_odata_param | TYPE EBPP_BD_ODATA_PARAM. " |
|   CALL FUNCTION 'EBPP_BD_GET_CONTACTS' "Get contact history |
| EXPORTING | ||
| I_CUST_PARAM | = lv_i_cust_param | |
| I_INVOICE_PARAM | = lv_i_invoice_param | |
| I_ODATA_PARAM | = lv_i_odata_param | |
| IMPORTING | ||
| E_RETURN | = lv_e_return | |
| E_TOTAL_NUM | = lv_e_total_num | |
| E_DEBUG_INFO | = lv_e_debug_info | |
| TABLES | ||
| T_MESSAGES | = lt_t_messages | |
| T_CONTACTS | = lt_t_contacts | |
| . " EBPP_BD_GET_CONTACTS | ||
ABAP code using 7.40 inline data declarations to call FM EBPP_BD_GET_CONTACTS
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 SUBRC FROM SY INTO @DATA(ld_e_return). | ||||
Search for further information about these or an SAP related objects