SAP Reports / Programs

RFEKAXML SAP ABAP Report - Import of XML Bank Statements to Bank Data Storage







RFEKAXML is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.

If you would like to execute this report or see the full code listing simply enter RFEKAXML into the relevant SAP transactions such as SE38 or SE80


ABAP code to call this SAP report using the submit statement

This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.






SUBMIT RFEKAXML. "Basic submit
SUBMIT RFEKAXML AND RETURN. "Return to original report after report execution complete
SUBMIT RFEKAXML VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Title: Import of XML Bank Statements to Bank Data Storage


INCLUDES used within this REPORT RFEKAXML

INCLUDE RFEBKA03.


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

FIEB_GET_FMTGRP_X CALL FUNCTION 'FIEB_GET_FMTGRP_X' EXPORTING iv_format_x = l_format IMPORTING ev_format_group_x = l_format_group.

FIEB_READ_MAPP_X CALL FUNCTION 'FIEB_READ_MAPP_X' EXPORTING i_format_x = l_format is_account = l_account IMPORTING ev_xslt_transf = l_xslt_transf ev_badi_filter_val = l_badi_filter_val EXCEPTIONS not_found = 1 OTHERS = 2.

FIEB_MAPPING_X CALL FUNCTION 'FIEB_MAPPING_X' EXPORTING i_bank_statement = l_xml_string iv_xslt_transf = l_xslt_transf iv_badi_filter_val = l_badi_filter_val IMPORTING et_acct_statement = lt_acct_statement et_bapiret = lt_bapiret EXCEPTIONS not_possible = 1 error_in_transf = 2 error_in_badi = 3 no_transformation = 4 system_error = 5 OTHERS = 6.

FIEB_SAVE_BANK_STMT CALL FUNCTION 'FIEB_SAVE_BANK_STMT' EXPORTING febko_if = ls_acct_statement-febko IMPORTING stmt_key = l_kukey e_vgext_ok = vgext_ok TABLES febep_if = ls_acct_statement-febep febre_if = ls_acct_statement-febre febcl_if = ls_acct_statement-febcl et_bapiret = lt_bapiret et_nott028g = lt_nott028g EXCEPTIONS input_wrong = 1 error = 2 OTHERS = 3.

GUI_UPLOAD CALL FUNCTION 'GUI_UPLOAD' EXPORTING filename = l_auszug_file filetype = 'ASC' codepage = l_upload_codepage no_auth_check = 'X' TABLES data_tab = lt_xml EXCEPTIONS file_open_error = 1 file_read_error = 2 OTHERS = 18.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name RFEKAXML or its description.