RMCSBW01 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 RMCSBW01 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!
CONTROL_INIT CALL FUNCTION 'CONTROL_INIT'.
TR_SYS_PARAMS CALL FUNCTION 'TR_SYS_PARAMS' IMPORTING systemtype = g_systemtype.
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING text = text-050 EXCEPTIONS OTHERS = 1.
TREEV_CREATE_COLUMN_TREE CALL FUNCTION 'TREEV_CREATE_COLUMN_TREE' EXPORTING owner_repid = l_this_repid dynnr = l_this_dynnr container = 'TREE_CONTAINER' left = 1 top = 1 width = 240 height = 240 register_event_link_click = true item_selection = true node_selection_mode = treev_node_sel_mode_single hierarchy_header = l_hierarchy_header item_table_structure_name = 'TMCEXITM' TABLES columns = l_columns headers = l_headers node_table = l_node_table item_table = l_item_table CHANGING handle = g_tree EXCEPTIONS create_error = 1 tree_control_not_existing = 2 cntl_system_error = 3 failed = 4 illegal_node_selection_mode = 5 illegal_column_name = 6 illegal_column_alignment = 7 illegal_header_alignment = 8 illegal_header_type = 9 illegal_header_name = 10 duplicated_column_name = 11 duplicated_header_name = 12 illegal_end_col = 13 end_col_not_found = 14 missing_item_structure_name = 15 empty_node_table = 16 error_in_tables = 17 dp_error = 18 illegal_owner_repid = 19 too_many_columns = 20 table_structure_name_not_found = 21 OTHERS = 22.
DDUT_TEXT_FOR_VALUE CALL FUNCTION 'DDUT_TEXT_FOR_VALUE' EXPORTING tabname = con_tmcexupd fieldname = con_tmcexupd_update_mode value =
IMPORTING text = hlp_text EXCEPTIONS no_ddic_field = 1 illegal_value = 2 OTHERS = 3.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.