EXIT_RFEBFI20_001 is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name EXIT_RFEBFI20_001 into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
XF01
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'EXIT_RFEBFI20_001' "Transfer Additional Data (Finnish TITO Format)
* EXPORTING
* i_febko = " febko Electronic Bank Statement: Header Record
* i_febvw = " febvw Electronic Bank Statement: Management Record
IMPORTING
e_febko = " febko Electronic Bank Statement: Header Record
e_febvw = " febvw Electronic Bank Statement: Management Record
e_msgtext = " febmka-messg Message Text
e_msgtyp = " febmka-mstyp Message Type
e_update = " febmka-mstyp Update Flag
TABLES
* t_febep = " febep Line Item Table
* t_febre = " febre Line Item Table - Usage
* t_febms = " febms Messages from Bank Statement
t_base_rec_acc_stmt = " base_rec_acc_stmt T00 TITO Record Table
t_base_rec_trans = " base_rec_trans T10 TITO Record Table
t_add_rec_trans = " add_rec_trans T11 TITO Record Table
t_balance_rec = " balance_rec T40 TITO Record Table
t_cum_base_rec = " cum_base_rec T50 TITO Record Table
t_cum_corr_rec = " cum_corr_rec T51 TITO Record Table
t_spec_rec = " spec_rec T60 TITO Record Table
t_mess_rec = " mess_rec T70 TITO Record Table
t_base_rec_notif = " base_rec_trans T80 TITO Record Table
t_add_rec_notif = " add_rec_trans T81 TITO Record Table
. " EXIT_RFEBFI20_001
The ABAP code below is a full code listing to execute function module EXIT_RFEBFI20_001 including all data declarations. The code uses 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 original method of declaring data variables up front. 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).
| ld_e_febko | TYPE FEBKO , |
| ld_e_febvw | TYPE FEBVW , |
| ld_e_msgtext | TYPE FEBMKA-MESSG , |
| ld_e_msgtyp | TYPE FEBMKA-MSTYP , |
| ld_e_update | TYPE FEBMKA-MSTYP , |
| it_t_febep | TYPE STANDARD TABLE OF FEBEP,"TABLES PARAM |
| wa_t_febep | LIKE LINE OF it_t_febep , |
| it_t_febre | TYPE STANDARD TABLE OF FEBRE,"TABLES PARAM |
| wa_t_febre | LIKE LINE OF it_t_febre , |
| it_t_febms | TYPE STANDARD TABLE OF FEBMS,"TABLES PARAM |
| wa_t_febms | LIKE LINE OF it_t_febms , |
| it_t_base_rec_acc_stmt | TYPE STANDARD TABLE OF BASE_REC_ACC_STMT,"TABLES PARAM |
| wa_t_base_rec_acc_stmt | LIKE LINE OF it_t_base_rec_acc_stmt , |
| it_t_base_rec_trans | TYPE STANDARD TABLE OF BASE_REC_TRANS,"TABLES PARAM |
| wa_t_base_rec_trans | LIKE LINE OF it_t_base_rec_trans , |
| it_t_add_rec_trans | TYPE STANDARD TABLE OF ADD_REC_TRANS,"TABLES PARAM |
| wa_t_add_rec_trans | LIKE LINE OF it_t_add_rec_trans , |
| it_t_balance_rec | TYPE STANDARD TABLE OF BALANCE_REC,"TABLES PARAM |
| wa_t_balance_rec | LIKE LINE OF it_t_balance_rec , |
| it_t_cum_base_rec | TYPE STANDARD TABLE OF CUM_BASE_REC,"TABLES PARAM |
| wa_t_cum_base_rec | LIKE LINE OF it_t_cum_base_rec , |
| it_t_cum_corr_rec | TYPE STANDARD TABLE OF CUM_CORR_REC,"TABLES PARAM |
| wa_t_cum_corr_rec | LIKE LINE OF it_t_cum_corr_rec , |
| it_t_spec_rec | TYPE STANDARD TABLE OF SPEC_REC,"TABLES PARAM |
| wa_t_spec_rec | LIKE LINE OF it_t_spec_rec , |
| it_t_mess_rec | TYPE STANDARD TABLE OF MESS_REC,"TABLES PARAM |
| wa_t_mess_rec | LIKE LINE OF it_t_mess_rec , |
| it_t_base_rec_notif | TYPE STANDARD TABLE OF BASE_REC_TRANS,"TABLES PARAM |
| wa_t_base_rec_notif | LIKE LINE OF it_t_base_rec_notif , |
| it_t_add_rec_notif | TYPE STANDARD TABLE OF ADD_REC_TRANS,"TABLES PARAM |
| wa_t_add_rec_notif | LIKE LINE OF it_t_add_rec_notif . |
The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.
DATA:
| ld_e_febko | TYPE FEBKO , |
| ld_i_febko | TYPE FEBKO , |
| it_t_febep | TYPE STANDARD TABLE OF FEBEP , |
| wa_t_febep | LIKE LINE OF it_t_febep, |
| ld_e_febvw | TYPE FEBVW , |
| ld_i_febvw | TYPE FEBVW , |
| it_t_febre | TYPE STANDARD TABLE OF FEBRE , |
| wa_t_febre | LIKE LINE OF it_t_febre, |
| ld_e_msgtext | TYPE FEBMKA-MESSG , |
| it_t_febms | TYPE STANDARD TABLE OF FEBMS , |
| wa_t_febms | LIKE LINE OF it_t_febms, |
| ld_e_msgtyp | TYPE FEBMKA-MSTYP , |
| it_t_base_rec_acc_stmt | TYPE STANDARD TABLE OF BASE_REC_ACC_STMT , |
| wa_t_base_rec_acc_stmt | LIKE LINE OF it_t_base_rec_acc_stmt, |
| ld_e_update | TYPE FEBMKA-MSTYP , |
| it_t_base_rec_trans | TYPE STANDARD TABLE OF BASE_REC_TRANS , |
| wa_t_base_rec_trans | LIKE LINE OF it_t_base_rec_trans, |
| it_t_add_rec_trans | TYPE STANDARD TABLE OF ADD_REC_TRANS , |
| wa_t_add_rec_trans | LIKE LINE OF it_t_add_rec_trans, |
| it_t_balance_rec | TYPE STANDARD TABLE OF BALANCE_REC , |
| wa_t_balance_rec | LIKE LINE OF it_t_balance_rec, |
| it_t_cum_base_rec | TYPE STANDARD TABLE OF CUM_BASE_REC , |
| wa_t_cum_base_rec | LIKE LINE OF it_t_cum_base_rec, |
| it_t_cum_corr_rec | TYPE STANDARD TABLE OF CUM_CORR_REC , |
| wa_t_cum_corr_rec | LIKE LINE OF it_t_cum_corr_rec, |
| it_t_spec_rec | TYPE STANDARD TABLE OF SPEC_REC , |
| wa_t_spec_rec | LIKE LINE OF it_t_spec_rec, |
| it_t_mess_rec | TYPE STANDARD TABLE OF MESS_REC , |
| wa_t_mess_rec | LIKE LINE OF it_t_mess_rec, |
| it_t_base_rec_notif | TYPE STANDARD TABLE OF BASE_REC_TRANS , |
| wa_t_base_rec_notif | LIKE LINE OF it_t_base_rec_notif, |
| it_t_add_rec_notif | TYPE STANDARD TABLE OF ADD_REC_TRANS , |
| wa_t_add_rec_notif | LIKE LINE OF it_t_add_rec_notif. |
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name EXIT_RFEBFI20_001 or its description.
EXIT_RFEBFI20_001 - Transfer Additional Data (Finnish TITO Format) EXIT_RFEBBU10_001 - Interpret Note to Payee Lines of the Electronic Bank Statement EXIT_RFEBBE00_001 - User Exit Conversion Program (CODA (Belgium) -> Multicash) EXIT_RFDRRANZ_001 - AR Info System:User Exit for Texts for Cust.-Spec.Grouping Characteris EXIT_RFBVEXIT_001 - User exit for transferring bank directory for Austria EXIT_RE_INSP_LIST_CREATE_001 - IS-U WM: User Exit for Additional Fields in the Inspection List