MF7AKF01 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 MF7AKF01 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: Berechnungsroutinen für Optionspreisrechner
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
OPTION_PRICE_EURO_BS CALL FUNCTION 'OPTION_PRICE_EURO_BS' EXPORTING opt_spot = spot opt_strike = strike opt_vola = vola opt_domestic_rate = domrate opt_foreign_rate = forrate opt_underlying = underlying opt_days = optdays put_call = optpc basistage = ber_basis IMPORTING opt_price = optprice.
OPTION_PRICE_AMER_BIN CALL FUNCTION 'OPTION_PRICE_AMER_BIN' EXPORTING spot = spot strike = strike vola = vola domestic_rate = domrate foreign_rate = forrate underlying = underlying days = optdays put_call = optpc steps = schritte basistage = ber_basis IMPORTING price = zw_result.
OPTION_PRICE_AMER_BIN CALL FUNCTION 'OPTION_PRICE_AMER_BIN' EXPORTING spot = spot strike = strike vola = vola domestic_rate = domrate foreign_rate = forrate underlying = underlying days = optdays put_call = optpc steps = schritte1 basistage = ber_basis IMPORTING price = optprice.
TV_ZINSCALC CALL FUNCTION 'TV_ZINSCALC' EXPORTING zins_days_year = zinsdays_year zins_rate = rate zins_search = zinssearch zins_spot = spot zins_swap = zinsswap IMPORTING zins_result = result EXCEPTIONS neg_zins_result = 01.
DEVISEN_TERMINKURS CALL FUNCTION 'DEVISEN_TERMINKURS' EXPORTING one_year = 1 tk_days_year = hilf_days_year tk_domestic_rate = zinsin tk_foreign_rate = zinsaus * TK_PV_FACTOR_D = * TK_PV_FACTOR_F = tk_spot = kalku-kursge tk_zins_abzins = 0 IMPORTING tk_forward_rate = kalku-terminge EXCEPTIONS zero_neg_days_year = 01 zero_neg_spot = 02 zero_pv_factor = 03.
DEVISEN_TERMINKURS CALL FUNCTION 'DEVISEN_TERMINKURS' EXPORTING one_year = 1 tk_days_year = hilf_days_year tk_domestic_rate = zinsin tk_foreign_rate = zinsaus * TK_PV_FACTOR_D = * TK_PV_FACTOR_F = tk_spot = kalku-kursbr tk_zins_abzins = 0 IMPORTING tk_forward_rate = kalku-terminbr EXCEPTIONS zero_neg_days_year = 01 zero_neg_spot = 02 zero_pv_factor = 03.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.