RHVCHECK is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Report for Static Checks in Training and Event Management This report lets you perform a number of different consistency checks for the data contained in plan versions in Training and Event Management...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter RHVCHECK 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: CHECK_01 = Room Reservations integration
Selection Text: CHECK_02 = Additional info for event type
Selection Text: CHECK_03 = Additional info for event
Selection Text: CHECK_04 = Business event type capacity
Selection Text: CHECK_05 = Location-dependent resources
Selection Text: CHECK_06 = Virtual root
Selection Text: CHECK_07 = Time constraint
Selection Text: CHECK_08 = Required infotypes
Selection Text: CHECK_09 = Attendee types
Selection Text: CHECK_10 = Current settings
Selection Text: CHECK_11 = Unrelated business events
Selection Text: CHECK_12 = Events without locations
Selection Text: CHECK_13 = Events w/ multi relationships
Selection Text: CHECK_14 = Resource w/multi relationships
Selection Text: PLVAR = Plan version
Title: Static checks in TEM
Text Symbol: 041 = Business events do not have to be related with locations
Text Symbol: 042 = Integration with Room Reservations
Text Symbol: 043 = Business event type additional info
Text Symbol: 044 = Business event additional info
Text Symbol: 045 = Capacity of business event type
Text Symbol: 046 = Location-dependent resources
Text Symbol: 047 = Virtual root
Text Symbol: 048 = Time constraint
Text Symbol: 049 = Required infotypes
Text Symbol: 050 = Attendee types
Text Symbol: 051 = Current settings
Text Symbol: 052 = Unrelated business events
Text Symbol: 053 = Business events without locations
Text Symbol: 054 = Repaired
Text Symbol: 055 = Business event types with multiple relationships
Text Symbol: 057 = Business event type $1 is assigned to multiple event groups simultaneously
Text Symbol: 058 = No data could be read for the check for business event types with multiple relationships
Text Symbol: 059 = Resources with multiple relationships
Text Symbol: 060 = Resource $1 is assigned to multiple resource types simultaneously
Text Symbol: 061 = No data could be read for the check for resources with multiple relationships
Text Symbol: 062 = There are no business event types with multiple relationships
Text Symbol: 063 = There are no resources with multiple relationships
INCLUDE: RHVCHECKF01,
RHVCHECKF02,
RHVCHECKF03,
RHVCHECKF04,
RHVCHECKF05,
RHVCHECKF06,
RHVCHECKF07,
RHVCHECKF08,
RHVCHECKF09,
RHVCHECKF10,
RHVCHECKF11,
RHVCHECKF12,
RHVCHECKF13,
RHVCHECKF14,
RHVCHECKF15,
RHVCHECKF16,
RHVCHECKF17,
RHVCHECKF18,
RHVCHECKF19,
RHVCHECKF20,
RHVCHECKF21,
RHVCHECKF22,
RHVCHECKF23,
RHVCHECKF24,
RHVCHECKF25,
RHVCHECKF26.
No SAP DATABASE tables are accessed within this REPORT code!
RH_GET_ACTIVE_WF_PLVAR CALL FUNCTION 'RH_GET_ACTIVE_WF_PLVAR' EXPORTING set_default_plvar = 'X' IMPORTING act_plvar = plvar EXCEPTIONS no_active_plvar = 0 OTHERS = 0.
RHF4_TEXT_PLVAR CALL FUNCTION 'RHF4_TEXT_PLVAR' EXPORTING plvar = plvar IMPORTING ptext = local_ptext EXCEPTIONS text_not_found = 0 OTHERS = 0.
RHF4_TEXT_PLVAR CALL FUNCTION 'RHF4_TEXT_PLVAR' EXPORTING plvar = plvar IMPORTING ptext = local_ptext EXCEPTIONS text_not_found = 0 OTHERS = 0.
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_program_name = repname i_structure_name = tabname CHANGING ct_fieldcat = fieldcat EXCEPTIONS inconsistent_interface = 1 program_error = 2 OTHERS = 3.
CALL FUNCTION 'RH_USER_VIEW_PARAMETER' IMPORTING object_key = display_key.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_buffer_active = ' ' "XMK ALV BUFF i_interface_check = ' ' i_callback_program = repname i_callback_user_command = 'USER_COMMAND' i_structure_name = tabname i_grid_title = text-008 is_layout = layout it_fieldcat = fieldcat it_sort = sort_tab TABLES t_outtab = output_tab EXCEPTIONS program_error = 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.
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 RHVCHECK or its description.