RMBWV3RE_DSP 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 RMBWV3RE_DSP 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.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
FUNCTION_IMPORT_INTERFACE CALL FUNCTION 'FUNCTION_IMPORT_INTERFACE' EXPORTING funcname = gt_qrfc_fb-mcex_qrfc_fb TABLES exception_list = gt_exception_list export_parameter = gt_export_parameter import_parameter = gt_import_parameter changing_parameter = gt_changing_parameter tables_parameter = gt_tables_parameter EXCEPTIONS error_message = 1 function_not_found = 2 invalid_name = 3 OTHERS = 4.
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_structure_name = 'mcex_delta_back' CHANGING ct_fieldcat = lt_fieldcat EXCEPTIONS inconsistent_interface = 1 program_error = 2 OTHERS = 3. "#EC NOTEXT
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_structure_name = lf_strucname CHANGING ct_fieldcat = lt_fieldcat EXCEPTIONS inconsistent_interface = 1 program_error = 2 OTHERS = 3.
LVC_TRANSFER_FROM_SLIS CALL FUNCTION 'LVC_TRANSFER_FROM_SLIS' EXPORTING it_fieldcat_alv = lt_fieldcat IMPORTING et_fieldcat_lvc = lt_lvc_fc TABLES it_data = lt_dummy EXCEPTIONS it_data_missing = 1 OTHERS = 2.
LVC_TABLE_CREATE CALL FUNCTION 'LVC_TABLE_CREATE' EXPORTING it_fieldcat = lt_lvc_fc i_callback_program = lf_program i_formname = 'TABLE_POINTER' EXCEPTIONS generate_subpool_dir_full = 1 OTHERS = 2.
REUSE_ALV_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY' EXPORTING i_callback_program = lf_program it_fieldcat = lt_fieldcat it_events = lt_events TABLES t_outtab =
EXCEPTIONS program_error = 1 OTHERS = 2.
FUNCTION_IMPORT_INTERFACE * CALL FUNCTION 'FUNCTION_IMPORT_INTERFACE' * EXPORTING * funcname = gt_qrfc_fb-mcex_qrfc_fb * TABLES * exception_list = gt_exception_list * export_parameter = gt_export_parameter * import_parameter = gt_import_parameter * changing_parameter = gt_changing_parameter * tables_parameter = gt_tables_parameter * EXCEPTIONS * error_message = 1 * function_not_found = 2 * invalid_name = 3 * OTHERS = 4.
DDIF_NAMETAB_GET * CALL FUNCTION 'DDIF_NAMETAB_GET' * EXPORTING * tabname = gf_tablename * all_types = 'X' * TABLES * dfies_tab = gt_dfies * EXCEPTIONS * not_found = 1 * OTHERS = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.