SAP Reports / Programs | Training and Event Management(PE) SAP PE

RHVCHECK SAP ABAP Report - Static checks in TEM







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


ABAP code to call this SAP report using the submit statement

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.






SUBMIT RHVCHECK. "Basic submit
SUBMIT RHVCHECK AND RETURN. "Return to original report after report execution complete
SUBMIT RHVCHECK VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


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





Text Symbol: FRM = Checks
Text Symbol: 040 = No data could be read for the business events with location check
Text Symbol: 001 = Plan version entered is consistent with Room Reservations plan version
Text Symbol: 002 = Plan version entered is not consistent with Room Reservations plan version
Text Symbol: 003 = Infotype $1 could not be read
Text Symbol: 004 = Infotype $1 has been maintained for each business event type
Text Symbol: 005 = Infotype $2 has not been maintained for business event type $1
Text Symbol: 006 = No business event types could be found for plan version $1
Text Symbol: 007 = No business events could be found for plan version $1
Text Symbol: 008 = Static consistency check
Text Symbol: 009 = Infotype $1 has been maintained for each business event
Text Symbol: 010 = Infotype $2 has not been maintained for business event $1
Text Symbol: 011 = No resource type could be found for plan version $1
Text Symbol: 012 = Location-dependent resource $1 is not related with location
Text Symbol: 013 = No data could be read for the location-dependent resource check
Text Symbol: 014 = Business event group $1 is not related with virtual root $2
Text Symbol: 015 = Business event type $1 is not related with virtual root $2
Text Symbol: 016 = No virtual root has been set
Text Symbol: 017 = Virtual root entered does not exist
Text Symbol: 018 = No business event group could be found for virtual root $1
Text Symbol: 019 = No business event type could be found for virtual root $1
Text Symbol: 020 = No data could be read for the virtual root check
Text Symbol: 021 = Business event types can have multiple relationships
Text Symbol: 022 = Time constraint for the business event types or resources could not be read
Text Symbol: 023 = Business event types cannot have multiple relationships
Text Symbol: 024 = Resources cannot have multiple relationships
Text Symbol: 025 = Resources can have multiple relationships
Text Symbol: 026 = The required infotype $2 does not exist for object $1
Text Symbol: 027 = No object could be read for object type $1
Text Symbol: 028 = No infotype could be read for object type $1
Text Symbol: 029 = The required infotype exists for all object types
Text Symbol: 030 = Attendee type $1 from table t777e does not exist in table t77r3
Text Symbol: 031 = Attendee type $1 from table t77r3 does not exist in table t777e
Text Symbol: 032 = Attendee type $1 from table t77s0 does not exist in table t77r3
Text Symbol: 033 = Attendee types are consistent in all tables
Text Symbol: 034 = Error during list editing
Text Symbol: 035 = All current settings are active
Text Symbol: 036 = Current setting $1 is not active
Text Symbol: 037 = Business event $1 is not related with business event type





Text Symbol: 038 = No data could be read for the dependent business event type check
Text Symbol: 039 = Business event $1 is not related with location


INCLUDES used within this REPORT RHVCHECK

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.


TABLES used within REPORT and the associated SELECT statement:

No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

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.

RH_USER_VIEW_PARAMETER



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.



Contribute (Add Comments)

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.