RFVIMAEU is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for The report RFVIMAEU is used for rent adjustments after changeover from the national currency to the euro...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 RFVIMAEU into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
FOU1 - RFVI: Rent adj. due to EURO Convers.
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: S_SWENR = D Business entity
Selection Text: S_SNUNR = Usage type
Selection Text: S_SMIVE = D Lease-out
Selection Text: S_SMENR = D Rental unit
Selection Text: S_SKOART = D Condition type
Selection Text: S_SGENR = D Buildings
Selection Text: P_XIDENT = User identification
Selection Text: P_JFUTAP = Adjust subsequent conditions?
Selection Text: P_DGAB = Valid from date
Selection Text: P_DFAELL = Follow-up postings due date
Selection Text: P_BUKRS = D Company code
Selection Text: P_ADJMV = Only adjust lease-outs
Selection Text: P_ADJME = Only adjust rental units
Selection Text: P_ADJAL = Adjust both
Title: Rent Adjustment After Conversion to Euro
Text Symbol: S03 = Adjustment Data
Text Symbol: S10 = Company code
Text Symbol: S11 = Business entity
Text Symbol: S12 = Rental unit
Text Symbol: S13 = Lease-out
Text Symbol: S14 = Usage type
Text Symbol: S15 = Valid from date
Text Symbol: S02 = Adjustment Run
Text Symbol: S01 = Object selection
Text Symbol: M05 = List Structure...
Text Symbol: M04 = Select conditions to be edited first
Text Symbol: M02 = Adjustments successfully activat.
Text Symbol: M01 = Adjustments successfully saved
Text Symbol: L02 = None of selected contracts were adjustable
Text Symbol: L01 = No objects selected
Text Symbol: H03 = Text on RU
Text Symbol: H02 = Tenant Euro new tot. Euro new/AU Nat. old / AU Foll.cont. Area
Text Symbol: H01 = Rental agr. BE RU Condition type Euro old tot. Euro old/AU Nat. old tot. Foll.cond. Adj.date
Text Symbol: AO3 = Adjust both
Text Symbol: AO2 = Only adjust rental units
Text Symbol: AO1 = Only adjust lease-outs
Text Symbol: AO0 = Adjustment Objects
Text Symbol: S16 = User identification
INCLUDE IFVIMAEU_SELSCR.
INCLUDE IFVIMACK.
INCLUDE IFVIMALK.
No SAP DATABASE tables are accessed within this REPORT code!
RERA_USER_COMPUTE_RANGE CALL FUNCTION 'RERA_USER_COMPUTE_RANGE' EXPORTING iv_bukrs = p_bukrs iv_adjust_date = p_dgab iv_adjust_ident = p_xident ir_params = gr_mauser ir_values = gr_values IMPORTING er_vimi17 = gr_vimi17 ev_mv_selected = gi_mv_selected ev_mv_adjusted = gi_mv_adjusted ev_me_selected = gi_me_selected 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 it_so_skoart = s_skoart et_vimi16 = gt_vimi16 et_protocol = gt_protocol.
RERA_USER_SAVE CALL FUNCTION 'RERA_USER_SAVE' EXPORTING ir_vimi17 = pr_vimi17 TABLES it_vimi16 = lt_vimi16_sel it_protocol = pt_prtcol EXCEPTIONS saving_failed = 1 no_permission = 2 OTHERS = 3.
RERA_USER_SAVE CALL FUNCTION 'RERA_USER_SAVE' EXPORTING ir_vimi17 = pr_vimi17 TABLES it_vimi16 = lt_vimi16_sel it_protocol = pt_prtcol EXCEPTIONS saving_failed = 1 no_permission = 2 OTHERS = 3.
RERA_USER_ACTIVATE CALL FUNCTION 'RERA_USER_ACTIVATE' EXPORTING ir_vimi17 = pr_vimi17 iv_nachbuchdatum = p_dfaell IMPORTING ev_me_activated = li_me_activated ev_mv_activated = li_mv_activated ev_number_error = li_number_err TABLES it_vimi16 = lt_vimi16_sel it_protocol = pt_prtcol EXCEPTIONS activation_failed = 1 OTHERS = 2.
RERA_PROT_RENTAL_ADJUSTMENT CALL FUNCTION 'RERA_PROT_RENTAL_ADJUSTMENT' TABLES it_protocol = pt_protocol EXCEPTIONS no_protocol_id = 1 protocol_invalid = 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.
RFVIMAEU - Rent Adjustment After Conversion to Euro RFVIMAEU - Rent Adjustment After Conversion to Euro RFVIMAED - Lease-Out Offer: Individual Correspondence RFVIMAED - Lease-Out Offer: Individual Correspondence RFVIMAEA - RE: Rent Adjustment - Control for Activation/Reversal/Display RFVIMAEA - RE: Rent Adjustment - Control for Activation/Reversal/Display