SAP EXIT_SAPL4499_001 Function Module for AccountStatement (PrevDay) Object Generation









EXIT_SAPL4499_001 is a standard exit sapl4499 001 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for AccountStatement (PrevDay) Object Generation 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 exit sapl4499 001 FM, simply by entering the name EXIT_SAPL4499_001 into the relevant SAP transaction such as SE37 or SE38.

Function Group: XF14
Program Name: SAPLXF14
Main Program:
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function EXIT_SAPL4499_001 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 'EXIT_SAPL4499_001'"AccountStatement (PrevDay) Object Generation
EXPORTING
FEBVW_IN = "Electronic Banking Management Records
FEBKO_IN = "Electronic Bank Statement Header Records
FEBPI_IN = "Polling Statement Line Item Information
TESTRUN = "Switch to simulation mode for write BAPIs

IMPORTING
FEBVW_OUT = "Electronic Banking Management Records
FEBKO_OUT = "Electronic Bank Statement Header Records
FEBPI_OUT = "Polling Statement Line Item Information

TABLES
FEBEP_IN_OUT = "Electronic Bank Statement Line Items
FEBRE_IN_OUT = "Reference record for electronic bank statement line item
* EXTENSION1 = "Container for 'Customer Exit' Parameter
* EXTENSION2 = "Container for 'Customer Exit' Parameter
* EXTENSION3 = "Container for 'Customer Exit' Parameter

EXCEPTIONS
USER_ERROR = 1
.



Related Function Modules

Below is a list of related SAP function modules this CUSTOMER FUNCTION exit / user exit is relevant for.
BAPI_ACCSTMT_CREATEFROMBALANCE Store account balance/check debit information
BAPI_ACCSTMT_CREATEFROMLOCKBOX Create lockbox data
BAPI_ACCSTMT_CREATEFROMPREVDAY Create Bank Statement/Day-End Statement
BAPI_ACCSTMT_CREATEFROMSAMEDAY Create Bank Statement/Today's Data
MAP2E_FEBEPXT_BF_TO_BAPI4499_2
MAP2E_FEBKOXT_BF_TO_BAPI4499_0
MAP2E_FEBKOXT_BF_TO_BAPI4499_1
MAP2E_FEBPI_BF_TO_BAPI4499_4
MAP2E_FEBPI_TO_BAPI4499_4
MAP2E_FEBRE_BF_TO_BAPI4499_3
MAP2E_LBX_FEBRE_BF_TO_BAPI4499
MAP2I_BAPI4499_0_TO_FEBKOXT_BF
MAP2I_BAPI4499_1_TO_FEBKOXT_BF
MAP2I_BAPI4499_2_TO_FEBEPXT_BF
MAP2I_BAPI4499_3_TO_FEBRE_BF
MAP2I_BAPI4499_4_TO_FEBPI
MAP2I_BAPI4499_4_TO_FEBPI_BF
MAP2I_BAPI4499_6_TO_LBX_FEBRE_

IMPORTING Parameters details for EXIT_SAPL4499_001

FEBVW_IN - Electronic Banking Management Records

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

FEBKO_IN - Electronic Bank Statement Header Records

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

FEBPI_IN - Polling Statement Line Item Information

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

TESTRUN - Switch to simulation mode for write BAPIs

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

EXPORTING Parameters details for EXIT_SAPL4499_001

FEBVW_OUT - Electronic Banking Management Records

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

FEBKO_OUT - Electronic Bank Statement Header Records

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

FEBPI_OUT - Polling Statement Line Item Information

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

TABLES Parameters details for EXIT_SAPL4499_001

FEBEP_IN_OUT - Electronic Bank Statement Line Items

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

FEBRE_IN_OUT - Reference record for electronic bank statement line item

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

EXTENSION1 - Container for 'Customer Exit' Parameter

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

EXTENSION2 - Container for 'Customer Exit' Parameter

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

EXTENSION3 - Container for 'Customer Exit' Parameter

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

EXCEPTIONS details

USER_ERROR -

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

Copy and paste ABAP code example for EXIT_SAPL4499_001 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_febvw_in  TYPE FEBVW, "   
lv_febvw_out  TYPE FEBVW, "   
lv_user_error  TYPE FEBVW, "   
lt_febep_in_out  TYPE STANDARD TABLE OF FEBEP, "   
lv_febko_in  TYPE FEBKO, "   
lv_febko_out  TYPE FEBKO, "   
lt_febre_in_out  TYPE STANDARD TABLE OF FEBRE, "   
lv_febpi_in  TYPE FEBPI, "   
lv_febpi_out  TYPE FEBPI, "   
lt_extension1  TYPE STANDARD TABLE OF BAPIEXT, "   
lv_testrun  TYPE TESTRUN, "   
lt_extension2  TYPE STANDARD TABLE OF BAPIEXT, "   
lt_extension3  TYPE STANDARD TABLE OF BAPIEXT. "   

  CALL FUNCTION 'EXIT_SAPL4499_001'  "AccountStatement (PrevDay) Object Generation
    EXPORTING
         FEBVW_IN = lv_febvw_in
         FEBKO_IN = lv_febko_in
         FEBPI_IN = lv_febpi_in
         TESTRUN = lv_testrun
    IMPORTING
         FEBVW_OUT = lv_febvw_out
         FEBKO_OUT = lv_febko_out
         FEBPI_OUT = lv_febpi_out
    TABLES
         FEBEP_IN_OUT = lt_febep_in_out
         FEBRE_IN_OUT = lt_febre_in_out
         EXTENSION1 = lt_extension1
         EXTENSION2 = lt_extension2
         EXTENSION3 = lt_extension3
    EXCEPTIONS
        USER_ERROR = 1
. " EXIT_SAPL4499_001




ABAP code using 7.40 inline data declarations to call FM EXIT_SAPL4499_001

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.

 
 
 
 
 
 
 
 
 
 
 
 
 


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!