SAP EXIT_RFEBFI20_001 Function Module for Transfer Additional Data (Finnish TITO Format)









EXIT_RFEBFI20_001 is a standard exit rfebfi20 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 Transfer Additional Data (Finnish TITO Format) 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 rfebfi20 001 FM, simply by entering the name EXIT_RFEBFI20_001 into the relevant SAP transaction such as SE37 or SE38.

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



Function EXIT_RFEBFI20_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_RFEBFI20_001'"Transfer Additional Data (Finnish TITO Format)
EXPORTING
* I_FEBKO = "Electronic Bank Statement: Header Record
* I_FEBVW = "Electronic Bank Statement: Management Record

IMPORTING
E_FEBKO = "Electronic Bank Statement: Header Record
E_FEBVW = "Electronic Bank Statement: Management Record
E_MSGTEXT = "Message Text
E_MSGTYP = "Message Type
E_UPDATE = "Update Flag

TABLES
* T_FEBEP = "Line Item Table
T_SPEC_REC = "T60 TITO Record Table
T_MESS_REC = "T70 TITO Record Table
T_BASE_REC_NOTIF = "T80 TITO Record Table
T_ADD_REC_NOTIF = "T81 TITO Record Table
* T_FEBRE = "Line Item Table - Usage
* T_FEBMS = "Messages from Bank Statement
T_BASE_REC_ACC_STMT = "T00 TITO Record Table
T_BASE_REC_TRANS = "T10 TITO Record Table
T_ADD_REC_TRANS = "T11 TITO Record Table
T_BALANCE_REC = "T40 TITO Record Table
T_CUM_BASE_REC = "T50 TITO Record Table
T_CUM_CORR_REC = "T51 TITO Record Table
.



IMPORTING Parameters details for EXIT_RFEBFI20_001

I_FEBKO - Electronic Bank Statement: Header Record

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

I_FEBVW - Electronic Bank Statement: Management Record

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

EXPORTING Parameters details for EXIT_RFEBFI20_001

E_FEBKO - Electronic Bank Statement: Header Record

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

E_FEBVW - Electronic Bank Statement: Management Record

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

E_MSGTEXT - Message Text

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

E_MSGTYP - Message Type

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

E_UPDATE - Update Flag

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

TABLES Parameters details for EXIT_RFEBFI20_001

T_FEBEP - Line Item Table

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

T_SPEC_REC - T60 TITO Record Table

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

T_MESS_REC - T70 TITO Record Table

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

T_BASE_REC_NOTIF - T80 TITO Record Table

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

T_ADD_REC_NOTIF - T81 TITO Record Table

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

T_FEBRE - Line Item Table - Usage

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

T_FEBMS - Messages from Bank Statement

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

T_BASE_REC_ACC_STMT - T00 TITO Record Table

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

T_BASE_REC_TRANS - T10 TITO Record Table

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

T_ADD_REC_TRANS - T11 TITO Record Table

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

T_BALANCE_REC - T40 TITO Record Table

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

T_CUM_BASE_REC - T50 TITO Record Table

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

T_CUM_CORR_REC - T51 TITO Record Table

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

Copy and paste ABAP code example for EXIT_RFEBFI20_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_e_febko  TYPE FEBKO, "   
lv_i_febko  TYPE FEBKO, "   
lt_t_febep  TYPE STANDARD TABLE OF FEBEP, "   
lt_t_spec_rec  TYPE STANDARD TABLE OF SPEC_REC, "   
lt_t_mess_rec  TYPE STANDARD TABLE OF MESS_REC, "   
lt_t_base_rec_notif  TYPE STANDARD TABLE OF BASE_REC_TRANS, "   
lt_t_add_rec_notif  TYPE STANDARD TABLE OF ADD_REC_TRANS, "   
lv_e_febvw  TYPE FEBVW, "   
lv_i_febvw  TYPE FEBVW, "   
lt_t_febre  TYPE STANDARD TABLE OF FEBRE, "   
lt_t_febms  TYPE STANDARD TABLE OF FEBMS, "   
lv_e_msgtext  TYPE FEBMKA-MESSG, "   
lv_e_msgtyp  TYPE FEBMKA-MSTYP, "   
lt_t_base_rec_acc_stmt  TYPE STANDARD TABLE OF BASE_REC_ACC_STMT, "   
lv_e_update  TYPE FEBMKA-MSTYP, "   
lt_t_base_rec_trans  TYPE STANDARD TABLE OF BASE_REC_TRANS, "   
lt_t_add_rec_trans  TYPE STANDARD TABLE OF ADD_REC_TRANS, "   
lt_t_balance_rec  TYPE STANDARD TABLE OF BALANCE_REC, "   
lt_t_cum_base_rec  TYPE STANDARD TABLE OF CUM_BASE_REC, "   
lt_t_cum_corr_rec  TYPE STANDARD TABLE OF CUM_CORR_REC. "   

  CALL FUNCTION 'EXIT_RFEBFI20_001'  "Transfer Additional Data (Finnish TITO Format)
    EXPORTING
         I_FEBKO = lv_i_febko
         I_FEBVW = lv_i_febvw
    IMPORTING
         E_FEBKO = lv_e_febko
         E_FEBVW = lv_e_febvw
         E_MSGTEXT = lv_e_msgtext
         E_MSGTYP = lv_e_msgtyp
         E_UPDATE = lv_e_update
    TABLES
         T_FEBEP = lt_t_febep
         T_SPEC_REC = lt_t_spec_rec
         T_MESS_REC = lt_t_mess_rec
         T_BASE_REC_NOTIF = lt_t_base_rec_notif
         T_ADD_REC_NOTIF = lt_t_add_rec_notif
         T_FEBRE = lt_t_febre
         T_FEBMS = lt_t_febms
         T_BASE_REC_ACC_STMT = lt_t_base_rec_acc_stmt
         T_BASE_REC_TRANS = lt_t_base_rec_trans
         T_ADD_REC_TRANS = lt_t_add_rec_trans
         T_BALANCE_REC = lt_t_balance_rec
         T_CUM_BASE_REC = lt_t_cum_base_rec
         T_CUM_CORR_REC = lt_t_cum_corr_rec
. " EXIT_RFEBFI20_001




ABAP code using 7.40 inline data declarations to call FM EXIT_RFEBFI20_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.

 
 
 
 
 
 
 
 
 
 
 
"SELECT single MESSG FROM FEBMKA INTO @DATA(ld_e_msgtext).
 
"SELECT single MSTYP FROM FEBMKA INTO @DATA(ld_e_msgtyp).
 
 
"SELECT single MSTYP FROM FEBMKA INTO @DATA(ld_e_update).
 
 
 
 
 
 


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!