RHVRESPO 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 RHVRESPO 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.
Title: Business Event Owner
Text Symbol: Z01 = No event owner
Text Symbol: S08 = Event name
Text Symbol: S07 = Status
Text Symbol: S06 = End date
Text Symbol: S05 = Start date
Text Symbol: S04 = Status
Text Symbol: S03 = Name
Text Symbol: S02 = Owner
Text Symbol: S01 = Event(ab.)
Text Symbol: M08 = Event type (name)
Text Symbol: M07 = Status
Text Symbol: M06 = End date
Text Symbol: M05 = Start date
Text Symbol: M04 = Status
Text Symbol: M03 = Name: event owner
Text Symbol: M02 = Event owner
Text Symbol: M01 = Event type (abbr.)
Text Symbol: L08 = Business event type (name)
Text Symbol: L07 = Status
Text Symbol: L06 = End date
Text Symbol: L05 = Start date
Text Symbol: L04 = Status
Text Symbol: L03 = Name of event owner
Text Symbol: L02 = Event owner
Text Symbol: L01 = Business event type (abbreviation)
Text Symbol: K01 = Selection period
Text Symbol: I01 = Business event owner
Text Symbol: D08 = Business event type (name)
Text Symbol: D07 = Status
Text Symbol: D06 = End date
Text Symbol: D05 = Start date
Text Symbol: D04 = Status
Text Symbol: D03 = Name of event owner
Text Symbol: D02 = Event owner
Text Symbol: D01 = Business event type (abbreviation)
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
RH_READ_INFTY_1001 CALL FUNCTION 'RH_READ_INFTY_1001' EXPORTING subty = $respa begda = pchbegda endda = pchendda TABLES i1001 = i1001 objects = iobject EXCEPTIONS nothing_found = 1 wrong_condition = 2 OTHERS = 3.
RH_TEXT_BUFFER_FILL_EXTERNAL CALL FUNCTION 'RH_TEXT_BUFFER_FILL_EXTERNAL' TABLES objects = itextobjects.
RH_READ_OBJECT CALL FUNCTION 'RH_READ_OBJECT' "#EC DOM_EQUAL EXPORTING plvar = irespo-plvar otype = irespo-otype objid = irespo-objid check_stru_auth = space IMPORTING short = irespo-short stext = irespo-stext EXCEPTIONS not_found = 0 OTHERS = 0.
RH_READ_OBJECT CALL FUNCTION 'RH_READ_OBJECT' EXPORTING plvar = objec-plvar otype = i1001-sclas realo = i1001-sobid check_stru_auth = space IMPORTING short = irespo-zshort stext = irespo-ztext EXCEPTIONS not_found = 0 OTHERS = 0.
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_structure_name = alv_ddic * i_bypassing_buffer = 'X' CHANGING ct_fieldcat = gt_fieldcat[] EXCEPTIONS inconsistent_interface = 0 program_error = 0 OTHERS = 0.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_callback_program = 'RHVRESPO' i_callback_top_of_page = 'TOP_OF_PAGE' i_structure_name = 'HRVRESPO' it_fieldcat = gt_fieldcat[] i_callback_user_command = 'UCOMM_EXIT' TABLES t_outtab = irespo EXCEPTIONS program_error = 0 OTHERS = 0.
REUSE_ALV_COMMENTARY_WRITE CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE' EXPORTING it_list_commentary = alv_header[].
RH_EDIT_ANY_OBJECT CALL FUNCTION 'RH_EDIT_ANY_OBJECT' EXPORTING plvar = irespo-plvar otype = irespo-otype realo = robjid display_only = 'X' EXCEPTIONS OTHERS = 0.
RH_EDIT_ANY_OBJECT CALL FUNCTION 'RH_EDIT_ANY_OBJECT' EXPORTING plvar = irespo-plvar otype = irespo-sclas realo = irespo-sobid display_only = 'X' EXCEPTIONS OTHERS = 0.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.