SAP APAR_EBPP_INIT Function Module for EBPP: Lesen von Customizingdaten









APAR_EBPP_INIT is a standard apar ebpp init 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 von Customizingdaten 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 init FM, simply by entering the name APAR_EBPP_INIT 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_INIT 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_INIT'"EBPP: Lesen von Customizingdaten
EXPORTING
I_LANGUAGE_ISO = "Sprache nach ISO 639

IMPORTING
E_CUSTOMIZING = "Biller Direct: Customizingeinstellungen
E_RELEASE_INFO = "Biller Direct: Releasinformationen
E_RETURNCODE = "Rückgabewert, Rückgabewert nach ABAP-Anweisungen
RETURN = "Returnparameter

TABLES
* T_CARDTYPES = "Biller Direct: Kartentypen (Institute)
* T_DISPUTEREASONS = "Biller Direct: Gründe für Dispute Management
* T_INIT_DATA = "Biller Direct: Weitere Daten für Frontend
* T_TBSLT = "Bezeichnung der Buchungsschlüssel
* T_FILEEXT = "Biller Direct: Filetypen für Attachments
* T_INVOICE_FILEEXT = "Biller Direct: Allow file types for uploaded invoice
* T_ACT_CATEGORIES = "Biller Direct: activity category name and text
* T_MESSAGES = "Biller Direct: Meldungen
* T_INQUIRY_REASON = "Reason of the inquiry reason
.



IMPORTING Parameters details for APAR_EBPP_INIT

I_LANGUAGE_ISO - Sprache nach ISO 639

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

EXPORTING Parameters details for APAR_EBPP_INIT

E_CUSTOMIZING - Biller Direct: Customizingeinstellungen

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

E_RELEASE_INFO - Biller Direct: Releasinformationen

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

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)

RETURN - Returnparameter

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

TABLES Parameters details for APAR_EBPP_INIT

T_CARDTYPES - Biller Direct: Kartentypen (Institute)

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

T_DISPUTEREASONS - Biller Direct: Gründe für Dispute Management

Data type: APAR_EBPP_DISPUTEREASON
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_TBSLT - Bezeichnung der Buchungsschlüssel

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

T_FILEEXT - Biller Direct: Filetypen für Attachments

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

T_INVOICE_FILEEXT - Biller Direct: Allow file types for uploaded invoice

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

T_ACT_CATEGORIES - Biller Direct: activity category name and text

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

T_MESSAGES - Biller Direct: Meldungen

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

T_INQUIRY_REASON - Reason of the inquiry reason

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

Copy and paste ABAP code example for APAR_EBPP_INIT 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_cardtypes  TYPE STANDARD TABLE OF APAR_EBPP_CARDTYPE, "   
lv_e_customizing  TYPE APAR_EBPP_CUSTOMIZING, "   
lv_i_language_iso  TYPE LAISO, "   
lv_e_release_info  TYPE APAR_EBPP_RELEASE_INFO, "   
lt_t_disputereasons  TYPE STANDARD TABLE OF APAR_EBPP_DISPUTEREASON, "   
lt_t_init_data  TYPE STANDARD TABLE OF EBPP_INIT_ADD_DATA, "   
lv_e_returncode  TYPE SY-SUBRC, "   
lv_return  TYPE BAPIRET1, "   
lt_t_tbslt  TYPE STANDARD TABLE OF TBSLT, "   
lt_t_fileext  TYPE STANDARD TABLE OF FDM_EBPP_FILE_EXTENSIONS, "   
lt_t_invoice_fileext  TYPE STANDARD TABLE OF APAR_EBPP_FILE_EXTENSIONS, "   
lt_t_act_categories  TYPE STANDARD TABLE OF APAR_EBPP_ACTIVITY_CATEGORY, "   
lt_t_messages  TYPE STANDARD TABLE OF EBPP_MESSAGES, "   
lt_t_inquiry_reason  TYPE STANDARD TABLE OF EBPP_INQUIRY_REASON. "   

  CALL FUNCTION 'APAR_EBPP_INIT'  "EBPP: Lesen von Customizingdaten
    EXPORTING
         I_LANGUAGE_ISO = lv_i_language_iso
    IMPORTING
         E_CUSTOMIZING = lv_e_customizing
         E_RELEASE_INFO = lv_e_release_info
         E_RETURNCODE = lv_e_returncode
         RETURN = lv_return
    TABLES
         T_CARDTYPES = lt_t_cardtypes
         T_DISPUTEREASONS = lt_t_disputereasons
         T_INIT_DATA = lt_t_init_data
         T_TBSLT = lt_t_tbslt
         T_FILEEXT = lt_t_fileext
         T_INVOICE_FILEEXT = lt_t_invoice_fileext
         T_ACT_CATEGORIES = lt_t_act_categories
         T_MESSAGES = lt_t_messages
         T_INQUIRY_REASON = lt_t_inquiry_reason
. " APAR_EBPP_INIT




ABAP code using 7.40 inline data declarations to call FM APAR_EBPP_INIT

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!