RFIDMXVAT_FORMS_FI_BAL is a standard ABAP INCLUDE 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 RFIDMXVAT_FORMS_FI_BAL into the relevant SAP transactions such as SE38 or SE80
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.
Title: From Routines for FI Account Balances
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
FAGL_GET_TABLENAMES CALL FUNCTION 'FAGL_GET_TABLENAMES' EXPORTING i_ledger = gv_relevant_ledger IMPORTING es_tabnames = gs_fagl_tabnames EXCEPTIONS not_found = 1 configuration_error = 2 OTHERS = 3.
G_TABLE_SELECT_WITH_CURSOR CALL FUNCTION 'G_TABLE_SELECT_WITH_CURSOR' EXPORTING i_tabname = gs_fagl_tabnames-tot_table i_selection = gt_selection i_fieldlist = gt_fieldlist i_aggregation = 'X' I_CUMULATED = 'X' I_SORTED = 'X' CHANGING c_t_data =
EXCEPTIONS invalid_selection = 1 invalid_table = 2 internal_error = 3 foreign_lock = 4 OTHERS = 5.
GL_USER_DATA_GET call function 'GL_USER_DATA_GET' EXPORTING owner = gc_owner name = gc_parameter_id IMPORTING value = P_GV_RELEVANT_LEDGER EXCEPTIONS invalid_owner = 1 name_not_found = 2.
FAGL_GET_LEADING_LEDGER CALL FUNCTION 'FAGL_GET_LEADING_LEDGER' IMPORTING e_rldnr = P_GV_RELEVANT_LEDGER EXCEPTIONS not_found = 1.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.