RIVAEP20 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 RIVAEP20 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: P_BUK = Company code
Selection Text: SO_GE = Building
Selection Text: SO_NU = Usage type
Selection Text: SO_WE = Business entity
Title: List of Rental Units
Text Symbol: LM1 = BE RU BU PR Usage type RU text
Text Symbol: LM2 = -------- -------- -------- -------- ------------------ ------------------------------
Text Symbol: LM3 = RU address Tenant
INCLUDE RFVICNSV.
INCLUDE RFVICNNK.
INCLUDE RFVICNGP.
No SAP DATABASE tables are accessed within this REPORT code!
STATUS_CHECK CALL FUNCTION 'STATUS_CHECK' EXPORTING bypass_buffer = ' ' client = sy-mandt objnr = vimi01-snks status = con_istat-loeschvormerk EXCEPTIONS object_not_found = 01 status_not_active = 02.
REMD_ENCODE_IMKEY CALL FUNCTION 'REMD_ENCODE_IMKEY' EXPORTING i_bukrs = vimi01-bukrs i_swenr = vimi01-swenr i_smenr = vimi01-smenr IMPORTING e_adrnr = adrnr e_intreno = l_intreno EXCEPTIONS OTHERS = 1.
ADDRESS_ASSIGN CALL FUNCTION 'ADDRESS_ASSIGN' EXPORTING adr_in = adrnr function = 'P' objekttyp = con_obtyp_adr-mieteinheit IMPORTING adrwa_out = l_sans1 EXCEPTIONS OTHERS = 1.
REAL_ESTATE_PARTNER_DATA_READ CALL FUNCTION 'REAL_ESTATE_PARTNER_DATA_READ' EXPORTING i1_roletyp = con_roletyp-hauptmieter i1_sobjekt = lmv_intreno i1_snumobj = con_snumobj-immo i_date = sy-datum i_kz_no_address = 'X' IMPORTING e_bp000 = pr_bp000 EXCEPTIONS OTHERS = 1.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.