RFVIMVHD 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 RFVIMVHD into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
FOVL - Overview of Lease-Outs
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: WHICH3 = Hierarchy
Selection Text: WHICH2 = Lease-Outs
Selection Text: WHICH1 = Standard Hierarchy
Selection Text: P_BUKRS = Company Code
Title: Edit Lease-Outs
Text Symbol: WED = Data on Business Entity
Text Symbol: UNB = Unlimited
Text Symbol: SEL = List Display
Text Symbol: PAR = LO Partner
Text Symbol: NMV = Select a collective lease-out
Text Symbol: MVS = Lease-Outs
Text Symbol: MVD = Lease-Out Data
Text Symbol: MED = Data on Rental Unit
Text Symbol: KUE = Notice
Text Symbol: HD3 = Indiv.Contract Rntl Start Rntl End
Text Symbol: HD2 = LO No. Tenant
Text Symbol: HD1 = LO No. Collective LO Tenant Rntl Start Rntl End
Text Symbol: DMV = Collective LO Split
Text Symbol: 100 = Lease-Outs
Text Symbol: 001 = Unknown
INCLUDE RFVICNSV.
INCLUDE RFVICNGP.
No SAP DATABASE tables are accessed within this REPORT code!
REMD_OBJECT_TEXT_GET call function 'REMD_OBJECT_TEXT_GET' exporting * i_objnr = i_intreno = vimi01-intreno * i_imkey = i_no_floor_for_ru = 'X' importing e_text = me_tab-me_text exceptions others = 1.
REMD_OBJECT_TEXT_GET call function 'REMD_OBJECT_TEXT_GET' exporting i_intreno = viob01-intreno i_no_floor_for_ru = 'X' importing e_text = we_tab-xwetext exceptions others = 1.
RE_RA_GET_HVPADR call function 'RE_RA_GET_HVPADR' exporting intreno = mv_intreno bukrs = mv_bukrs sbelegng = sbelegng objnr = objnr importing name = pname.
RS_TREE_CONSTRUCT call function 'RS_TREE_CONSTRUCT' * exporting * INSERT_ID = '000000' * RELATIONSHIP = ' ' tables nodetab = tab_streenode exceptions tree_failure = 1 id_not_found = 2 wrong_relationship = 3 others = 4.
RS_TREE_LIST_DISPLAY call function 'RS_TREE_LIST_DISPLAY' exporting callback_program = 'RFVIMVHD' callback_user_command = 'COMMAND_HANDLER' * CALLBACK_TEXT_DISPLAY = * CALLBACK_MOREINFO_DISPLAY = * CALLBACK_COLOR_DISPLAY = * CALLBACK_TOP_OF_PAGE = callback_gui_status = 'SET_GUI_STATUS' status = 'OWN'.
FVVI_SAVE_VIMIMV call function 'FVVI_SAVE_VIMIMV' in update task exporting satz_kz = 'U' upd_vimimv = loc_vimimv.
FVAU_AUTHORITY_CHECK CALL FUNCTION 'FVAU_AUTHORITY_CHECK' EXPORTING OBJECT = L_AUTH_OBJECT AUTHPAR = L_AUTHPAR EXCEPTIONS NO_AUTHORITY = 1 INVALID_OBJECT = 2 OTHERS = 3.
FVAU_AUTHORITY_MESSAGE CALL FUNCTION 'FVAU_AUTHORITY_MESSAGE' EXPORTING OBJECT = L_AUTH_OBJECT AUTHPAR = L_AUTHPAR AUTHRC = P_RC EXCEPTIONS NO_AUTHORITY = 1 AUTHORITY_DESTROYED = 2 NO_AUTHORITY_PROFILE = 3 NO_USER_ENTRY = 4 TOO_MUCH_PARAMETER = 5 UNKNOWN_ERROR = 6 WRONG_FIELD_NAME = 7 INVALID_OBJECT = 8 OTHERS = 9.
AUTHORITY_CHECK_TCODE CALL FUNCTION 'AUTHORITY_CHECK_TCODE' EXPORTING TCODE = p_tcode EXCEPTIONS OK = 1 NOT_OK = 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.