SAP Reports / Programs

RFVIURSE SAP ABAP Report - Example of Use of User Exit for Rent Adjustment







RFVIURSE 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 RFVIURSE into the relevant SAP transactions such as SE38 or SE80


Transaction Code(s):

Below is a list of transaction codes which are relevant to this SAP report

FOUJ - RFVI: Calculate rent adjustment USR
FOUI - RFVI: Simulate Rent Adjustment USER


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 RFVIURSE. "Basic submit
SUBMIT RFVIURSE AND RETURN. "Return to original report after report execution complete
SUBMIT RFVIURSE 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: P_JANPOB = Only Adjust for Increase?
Selection Text: P_ERH_RL = Relative Increase
Selection Text: P_ERH_GS = Total Increase
Selection Text: P_ERH_FE = Increase per AU
Selection Text: P_DGUEAB = Valid-From Date
Selection Text: P_CUKEY = Currency Unit
Selection Text: P_BUKRS = Company Code
Selection Text: P_ARKEY = Area Unit
Selection Text: P_ADJRSN = Adjustment Reason
Selection Text: S_SWENR = Business Entity
Selection Text: S_SNUNR = Usage Type
Selection Text: S_SMIVE = Lease-Out
Selection Text: S_SMENR = Rental Unit
Selection Text: S_SGENR = Buildings
Selection Text: P_XIDENT = User Identification
Selection Text: P_SKOART = Condition Type
Selection Text: P_SANPME = Adjustment Objects
Selection Text: P_NEU_GS = Total New Rent
Selection Text: P_NEU_FE = New Rent per AU
Selection Text: P_NECOMV = Generate New Cond. on LO
Selection Text: P_NECOME = Generate New Cond. on RU
Selection Text: P_LEVEL = Detailed Log
Selection Text: P_JMEPRZ = Consider Percent.Rate on RU?
Selection Text: P_JFUTAP = Adjust Subsequent Conditions?
Title: Example of Use of User Exit for Rent Adjustment
Text Symbol: 100 = Object Selection
Text Symbol: 101 = Adjustment Run
Text Symbol: 102 = Adjustment Data
Text Symbol: 103 = Approval Data
Text Symbol: 104 = Other


INCLUDES used within this REPORT RFVIURSE

INCLUDE IFVIMAMS.
INCLUDE IFVIMACK.
INCLUDE IFVIMALK.


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:

RERA_USER_COMPUTE_RANGE CALL FUNCTION 'RERA_USER_COMPUTE_RANGE' EXPORTING iv_bukrs = p_bukrs iv_adjust_date = p_dgueab iv_adjust_ident = p_xident iv_skoart = p_skoart ir_values = gr_values ir_params = gr_params IMPORTING er_vimi17 = gr_vimi17 ev_mv_selected = gi_mv_selected ev_me_selected = gi_me_selected ev_mv_adjusted = gi_mv_adjusted ev_me_adjusted = gi_me_adjusted TABLES it_so_swenr = s_swenr it_so_smenr = s_smenr it_so_smive = s_smive it_so_sgenr = s_sgenr it_so_snunr = s_snunr et_vimi16 = gt_vimi16 et_protocol = gr_ptunit-prtcol EXCEPTIONS ldb_process_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 RFVIURSE or its description.