RHVUMS01 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 RHVUMS01 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.
Selection Text: $TEST = Test run
Selection Text: $SHOW = Display data records changed
Selection Text: $PAD22 = Additional data A022
Selection Text: $MDT_CUR = Check in current client
Selection Text: $MDT_ALL = Check in all clients
Title: HRMS: Check and Reorganize Database
Text Symbol: T20 = DATABASE UNDER REPAIR!
Text Symbol: T10 = Client
Text Symbol: T07 = Number repaired:
Text Symbol: T06 = Data records.
Text Symbol: T05 = Number faulty:
Text Symbol: T04 = Data records.
Text Symbol: T03 = Found a total of:
Text Symbol: T02 = All data records OK.
Text Symbol: T01 = Test run
Text Symbol: S04 = Check current client only
Text Symbol: S03 = Check in all clients
Text Symbol: S02 = Options for carrying out test
Text Symbol: S01 = Carry out checks for...
Text Symbol: R02 = Transferred
Text Symbol: R01 = 1 item per seminar set
Text Symbol: H01 = Check additional data for relationship A022
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING I_CALLBACK_PROGRAM = gv_repid IS_LAYOUT = gs_layout_grid IT_FIELDCAT = gt_fieldcat_grid IT_EXCLUDING = gt_exclude_icon IT_EVENTS = gt_eventtab_grid TABLES T_OUTTAB = gt_output_hrms EXCEPTIONS PROGRAM_ERROR = 1 OTHERS = 2.
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING I_PROGRAM_NAME = gv_repid I_STRUCTURE_NAME = gc_structure I_CLIENT_NEVER_DISPLAY = ' ' CHANGING CT_FIELDCAT = xt_fieldcat EXCEPTIONS INCONSISTENT_INTERFACE = 1 PROGRAM_ERROR = 2 OTHERS = 3.
REUSE_ALV_EVENTS_GET CALL FUNCTION 'REUSE_ALV_EVENTS_GET' EXPORTING I_LIST_TYPE = 0 IMPORTING ET_EVENTS = xt_eventtab_grid EXCEPTIONS LIST_TYPE_WRONG = 1 OTHERS = 2.
REUSE_ALV_COMMENTARY_WRITE CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE' EXPORTING IT_LIST_COMMENTARY = gt_top_of_page.
REUSE_ALV_COMMENTARY_WRITE CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE' EXPORTING IT_LIST_COMMENTARY = gt_end_of_list I_END_OF_LIST_GRID = 'X'.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.