SAP APAR_EBPP_GET_DATA Function Module for EBPP: Lesen aller Daten (Posten, Banken, Zahlungskarten)









APAR_EBPP_GET_DATA is a standard apar ebpp get data SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for EBPP: Lesen aller Daten (Posten, Banken, Zahlungskarten) 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 apar ebpp get data FM, simply by entering the name APAR_EBPP_GET_DATA into the relevant SAP transaction such as SE37 or SE38.

Function Group: APAR_EBPP
Program Name: SAPLAPAR_EBPP
Main Program: SAPLAPAR_EBPP
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:



Function APAR_EBPP_GET_DATA 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 'APAR_EBPP_GET_DATA'"EBPP: Lesen aller Daten (Posten, Banken, Zahlungskarten)
EXPORTING
I_CONTROLDATA = "Biller Direct: Kontrolldaten
I_PARTNER = "Biller Direct: Partnerdaten
* I_ADDSEL = "Biller Direct: Zusätzliche Selektionsangaben
* I_DMSELECTION = "Biller Direct: Selektionen für Klärungsfälle

IMPORTING
E_RETURNCODE = "Rückgabewert, Rückgabewert nach ABAP-Anweisungen
E_CREDITS = "Biller Direct: Summeninformationen (Rechnungen und Gutschriften)
E_PARTNER = "Biller Direct: Partnerdaten
RETURN = "Returnparameter

TABLES
* T_ITEMS = "Biller Direct: Positionsdaten
* T_INIT_DATA = "Biller Direct: Weitere Daten für Frontend
* T_MESSAGES = "Biller Direct: Meldungen
* T_PAYEXPLANATION = "Biller Direct: Erklärung einer Zahlung (Hauptbuchpositionen)
* T_DISPUTES = "Biller Direct: Klärungsfalldaten
* T_DISPUTES_ALLOCATION = "Biller Direct: Zuordnung Klärungsfälle / Rechnungen
* T_INVOICES = "Biller Direct: Rechnungsdaten
* T_ALLOCATION = "Biller Direct: Zuordnung Positionsdaten / Rechnungsdaten
* T_MYPAYMENTS = "Biller Direct: Meine Zahlungen
* T_PAYALLOCATION = "Biller Direct: Zuordnung Zahlungsdaten / Rechnungsdaten
* T_BANKS = "Biller Direct: Bankverbindungen
* T_CARDS = "Zahlungskarten-Daten für EBPP
* T_CARDTYPES = "Biller Direct: Kartentypen (Institute)
* T_TOTALS = "Biller Direct: Summen
.



IMPORTING Parameters details for APAR_EBPP_GET_DATA

I_CONTROLDATA - Biller Direct: Kontrolldaten

Data type: EBPP_CONTROL
Optional: No
Call by Reference: No ( called with pass by value option)

I_PARTNER - Biller Direct: Partnerdaten

Data type: EBPP_PARTNER
Optional: No
Call by Reference: No ( called with pass by value option)

I_ADDSEL - Biller Direct: Zusätzliche Selektionsangaben

Data type: EBPP_ADDSEL
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_DMSELECTION - Biller Direct: Selektionen für Klärungsfälle

Data type: FDM_EBPP_DMSELECTION
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for APAR_EBPP_GET_DATA

E_RETURNCODE - Rückgabewert, Rückgabewert nach ABAP-Anweisungen

Data type: SY-SUBRC
Optional: No
Call by Reference: No ( called with pass by value option)

E_CREDITS - Biller Direct: Summeninformationen (Rechnungen und Gutschriften)

Data type: EBPP_CREDITS
Optional: No
Call by Reference: No ( called with pass by value option)

E_PARTNER - Biller Direct: Partnerdaten

Data type: EBPP_PARTNER
Optional: No
Call by Reference: No ( called with pass by value option)

RETURN - Returnparameter

Data type: BAPIRET1
Optional: No
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for APAR_EBPP_GET_DATA

T_ITEMS - Biller Direct: Positionsdaten

Data type: EBPP_ITEM
Optional: Yes
Call by Reference: Yes

T_INIT_DATA - Biller Direct: Weitere Daten für Frontend

Data type: EBPP_INIT_ADD_DATA
Optional: Yes
Call by Reference: Yes

T_MESSAGES - Biller Direct: Meldungen

Data type: EBPP_MESSAGES
Optional: Yes
Call by Reference: Yes

T_PAYEXPLANATION - Biller Direct: Erklärung einer Zahlung (Hauptbuchpositionen)

Data type: EBPP_PAYEXPLANATION
Optional: Yes
Call by Reference: Yes

T_DISPUTES - Biller Direct: Klärungsfalldaten

Data type: FDM_EBPP_DMDISPUTES
Optional: Yes
Call by Reference: Yes

T_DISPUTES_ALLOCATION - Biller Direct: Zuordnung Klärungsfälle / Rechnungen

Data type: EBPP_DM_ALLOCATION
Optional: Yes
Call by Reference: Yes

T_INVOICES - Biller Direct: Rechnungsdaten

Data type: EBPP_INVOICE
Optional: Yes
Call by Reference: Yes

T_ALLOCATION - Biller Direct: Zuordnung Positionsdaten / Rechnungsdaten

Data type: EBPP_ALLOCATION
Optional: Yes
Call by Reference: Yes

T_MYPAYMENTS - Biller Direct: Meine Zahlungen

Data type: EBPP_MYPAYMENTS
Optional: Yes
Call by Reference: Yes

T_PAYALLOCATION - Biller Direct: Zuordnung Zahlungsdaten / Rechnungsdaten

Data type: EBPP_PAYALLOCATION
Optional: Yes
Call by Reference: Yes

T_BANKS - Biller Direct: Bankverbindungen

Data type: FIN_BANKID
Optional: Yes
Call by Reference: Yes

T_CARDS - Zahlungskarten-Daten für EBPP

Data type: APAR_EBPP_CARD
Optional: Yes
Call by Reference: Yes

T_CARDTYPES - Biller Direct: Kartentypen (Institute)

Data type: APAR_EBPP_CARDTYPES
Optional: Yes
Call by Reference: Yes

T_TOTALS - Biller Direct: Summen

Data type: EBPP_TOTALS
Optional: Yes
Call by Reference: Yes

Copy and paste ABAP code example for APAR_EBPP_GET_DATA 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_t_items  TYPE STANDARD TABLE OF EBPP_ITEM, "   
lv_e_returncode  TYPE SY-SUBRC, "   
lv_i_controldata  TYPE EBPP_CONTROL, "   
lt_t_init_data  TYPE STANDARD TABLE OF EBPP_INIT_ADD_DATA, "   
lt_t_messages  TYPE STANDARD TABLE OF EBPP_MESSAGES, "   
lt_t_payexplanation  TYPE STANDARD TABLE OF EBPP_PAYEXPLANATION, "   
lt_t_disputes  TYPE STANDARD TABLE OF FDM_EBPP_DMDISPUTES, "   
lt_t_disputes_allocation  TYPE STANDARD TABLE OF EBPP_DM_ALLOCATION, "   
lv_e_credits  TYPE EBPP_CREDITS, "   
lv_i_partner  TYPE EBPP_PARTNER, "   
lt_t_invoices  TYPE STANDARD TABLE OF EBPP_INVOICE, "   
lv_i_addsel  TYPE EBPP_ADDSEL, "   
lv_e_partner  TYPE EBPP_PARTNER, "   
lt_t_allocation  TYPE STANDARD TABLE OF EBPP_ALLOCATION, "   
lv_return  TYPE BAPIRET1, "   
lt_t_mypayments  TYPE STANDARD TABLE OF EBPP_MYPAYMENTS, "   
lv_i_dmselection  TYPE FDM_EBPP_DMSELECTION, "   
lt_t_payallocation  TYPE STANDARD TABLE OF EBPP_PAYALLOCATION, "   
lt_t_banks  TYPE STANDARD TABLE OF FIN_BANKID, "   
lt_t_cards  TYPE STANDARD TABLE OF APAR_EBPP_CARD, "   
lt_t_cardtypes  TYPE STANDARD TABLE OF APAR_EBPP_CARDTYPES, "   
lt_t_totals  TYPE STANDARD TABLE OF EBPP_TOTALS. "   

  CALL FUNCTION 'APAR_EBPP_GET_DATA'  "EBPP: Lesen aller Daten (Posten, Banken, Zahlungskarten)
    EXPORTING
         I_CONTROLDATA = lv_i_controldata
         I_PARTNER = lv_i_partner
         I_ADDSEL = lv_i_addsel
         I_DMSELECTION = lv_i_dmselection
    IMPORTING
         E_RETURNCODE = lv_e_returncode
         E_CREDITS = lv_e_credits
         E_PARTNER = lv_e_partner
         RETURN = lv_return
    TABLES
         T_ITEMS = lt_t_items
         T_INIT_DATA = lt_t_init_data
         T_MESSAGES = lt_t_messages
         T_PAYEXPLANATION = lt_t_payexplanation
         T_DISPUTES = lt_t_disputes
         T_DISPUTES_ALLOCATION = lt_t_disputes_allocation
         T_INVOICES = lt_t_invoices
         T_ALLOCATION = lt_t_allocation
         T_MYPAYMENTS = lt_t_mypayments
         T_PAYALLOCATION = lt_t_payallocation
         T_BANKS = lt_t_banks
         T_CARDS = lt_t_cards
         T_CARDTYPES = lt_t_cardtypes
         T_TOTALS = lt_t_totals
. " APAR_EBPP_GET_DATA




ABAP code using 7.40 inline data declarations to call FM APAR_EBPP_GET_DATA

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_returncode).
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!