SAP EBPP_BAPI_AR_ACC_GETSTATEMENT Function Module for









EBPP_BAPI_AR_ACC_GETSTATEMENT is a standard ebpp bapi ar acc getstatement SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 bapi ar acc getstatement FM, simply by entering the name EBPP_BAPI_AR_ACC_GETSTATEMENT into the relevant SAP transaction such as SE37 or SE38.

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



Function EBPP_BAPI_AR_ACC_GETSTATEMENT 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_BAPI_AR_ACC_GETSTATEMENT'"
EXPORTING
COMPANYCODE = "
CUSTOMER = "
DATE_FROM = "
DATE_TO = "
* NOTEDITEMS = ' ' "

IMPORTING
RETURN = "

TABLES
LINEITEMS = "
.



IMPORTING Parameters details for EBPP_BAPI_AR_ACC_GETSTATEMENT

COMPANYCODE -

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

CUSTOMER -

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

DATE_FROM -

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

DATE_TO -

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

NOTEDITEMS -

Data type: BAPI3007-NTDITMS_RQ
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for EBPP_BAPI_AR_ACC_GETSTATEMENT

RETURN -

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

TABLES Parameters details for EBPP_BAPI_AR_ACC_GETSTATEMENT

LINEITEMS -

Data type: APAREBPP_BAPI3007_2
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for EBPP_BAPI_AR_ACC_GETSTATEMENT 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_return  TYPE BAPIRETURN, "   
lt_lineitems  TYPE STANDARD TABLE OF APAREBPP_BAPI3007_2, "   
lv_companycode  TYPE BAPI3007_1-COMP_CODE, "   
lv_customer  TYPE BAPI3007_1-CUSTOMER, "   
lv_date_from  TYPE BAPI3007-FROM_DATE, "   
lv_date_to  TYPE BAPI3007-TO_DATE, "   
lv_noteditems  TYPE BAPI3007-NTDITMS_RQ. "   SPACE

  CALL FUNCTION 'EBPP_BAPI_AR_ACC_GETSTATEMENT'  "
    EXPORTING
         COMPANYCODE = lv_companycode
         CUSTOMER = lv_customer
         DATE_FROM = lv_date_from
         DATE_TO = lv_date_to
         NOTEDITEMS = lv_noteditems
    IMPORTING
         RETURN = lv_return
    TABLES
         LINEITEMS = lt_lineitems
. " EBPP_BAPI_AR_ACC_GETSTATEMENT




ABAP code using 7.40 inline data declarations to call FM EBPP_BAPI_AR_ACC_GETSTATEMENT

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 COMP_CODE FROM BAPI3007_1 INTO @DATA(ld_companycode).
 
"SELECT single CUSTOMER FROM BAPI3007_1 INTO @DATA(ld_customer).
 
"SELECT single FROM_DATE FROM BAPI3007 INTO @DATA(ld_date_from).
 
"SELECT single TO_DATE FROM BAPI3007 INTO @DATA(ld_date_to).
 
"SELECT single NTDITMS_RQ FROM BAPI3007 INTO @DATA(ld_noteditems).
DATA(ld_noteditems) = ' '.
 


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!