IFVIMACO_IND is a standard ABAP INCLUDE 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 IFVIMACO_IND 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: IS-RE: Rent Adjustment - Adjustment Using Index
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
MV_ADJUST_TYPE_INDEX_ACT_GET CALL FUNCTION 'MV_ADJUST_TYPE_INDEX_ACT_GET' EXPORTING i_intreno = pc_intreno i_date = pd_guelab i_skoart = pn_skoart IMPORTING e_vimi55 = pr_vimi55 EXCEPTIONS no_data_found = 1 OTHERS = 2.
DATE_CREATE CALL FUNCTION 'DATE_CREATE' EXPORTING datum_ein = lb_datum anzahl_monate = lp_rhyth IMPORTING datum_aus = lb_datum.
DATE_CREATE CALL FUNCTION 'DATE_CREATE' EXPORTING datum_ein = pd_inddate anzahl_monate = li_manpverz IMPORTING datum_aus = pd_adjdate.
DATE_CREATE CALL FUNCTION 'DATE_CREATE' EXPORTING datum_ein = pd_adjdate anzahl_monate = li_manpverz IMPORTING datum_aus = pd_inddate.
MV_ADJUST_TYPE_INDEX_POINT_GET CALL FUNCTION 'MV_ADJUST_TYPE_INDEX_POINT_GET' EXPORTING i_basjhr = pd_basyear i_wbind = pc_sindart i_datum = pd_datum IMPORTING e_indproz = pp_indpt EXCEPTIONS no_data_found = 01 OTHERS = 02.
MV_ADJUST_TYPE_INDEX_PERC_GET CALL FUNCTION 'MV_ADJUST_TYPE_INDEX_PERC_GET' EXPORTING i_proz_erh = lp_delta_rel i_viob01 = pr_viob01 IMPORTING e_perhproz = pp_weight EXCEPTIONS percentage_not_found = 1 OTHERS = 2.
MV_ADJUST_TYPE_INDEX_POINT_GET CALL FUNCTION 'MV_ADJUST_TYPE_INDEX_POINT_GET' EXPORTING i_basjhr = gs_tivajindxcon-BASEYEARFROM i_wbind = gs_tivajindxcon-SERIESFROM i_datum = gs_tivajindxcon-CHAINDATE IMPORTING e_indproz = ld_base_points EXCEPTIONS no_data_found = 01 OTHERS = 02.
MV_ADJUST_TYPE_INDEX_POINT_GET CALL FUNCTION 'MV_ADJUST_TYPE_INDEX_POINT_GET' EXPORTING i_basjhr = pr_vimi55-YBASISJ i_wbind = pr_vimi55-sindart i_datum = ld_datum IMPORTING e_indproz = ld_indpt EXCEPTIONS no_data_found = 01 OTHERS = 02.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.