SAP FX_TERMIN_METHODS Function Module for Steuerung des Terminmethodenrechners
FX_TERMIN_METHODS is a standard fx termin methods SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Steuerung des Terminmethodenrechners processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.
See here to view full function module documentation and code listing for fx termin methods FM, simply by entering the name FX_TERMIN_METHODS into the relevant SAP transaction such as SE37 or SE38.
Function Group: TVBA
Program Name: SAPLTVBA
Main Program: SAPLTVBA
Appliation area: F
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FX_TERMIN_METHODS pattern details
In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.CALL FUNCTION 'FX_TERMIN_METHODS'"Steuerung des Terminmethodenrechners.
EXPORTING
* AKT_DATUM = SY-DATUM "aktuelles Datum, z.B. heute
I_VZBEST = "Stammdaten der Geschäfte
* RES_CURR = "Resultatswaehrung
* AUSWTYP = '01' "nicht mehr verwendet
I_MSEG = "Marktdatenparameter
TABLES
* E_CASHFLOW = "Tab d. Ergebnisse der Methode Cashflow
E_METHODEN = "Tab. der Ergebnisse der Methoden
I_METHODEN = "Tab. der zu berechnenden Methoden
I_VZBEWEG = "Tab. d. Bewegungsdaten(Cashflows) der Geschäfte
* E_EXPOSURE = "Tab. d. Ergebnisse der Methode Exposure
EXCEPTIONS
MARKET_DATA_RATES = 1 MARKET_DATA_SPOT = 2 NO_CALC = 3 NO_DATA_IN_ATPA = 4
IMPORTING Parameters details for FX_TERMIN_METHODS
AKT_DATUM - aktuelles Datum, z.B. heute
Data type: SY-DATUMDefault: SY-DATUM
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_VZBEST - Stammdaten der Geschäfte
Data type: JBRBESTOptional: No
Call by Reference: No ( called with pass by value option)
RES_CURR - Resultatswaehrung
Data type: JBRBEST-SBWHROptional: Yes
Call by Reference: No ( called with pass by value option)
AUSWTYP - nicht mehr verwendet
Data type: ATVMO-AUSWTDefault: '01'
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_MSEG - Marktdatenparameter
Data type: JBRMSEGOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for FX_TERMIN_METHODS
E_CASHFLOW - Tab d. Ergebnisse der Methode Cashflow
Data type: VTVCASHFLOptional: Yes
Call by Reference: No ( called with pass by value option)
E_METHODEN - Tab. der Ergebnisse der Methoden
Data type: VTVMETHODOptional: No
Call by Reference: No ( called with pass by value option)
I_METHODEN - Tab. der zu berechnenden Methoden
Data type: VTVMETHODOptional: No
Call by Reference: No ( called with pass by value option)
I_VZBEWEG - Tab. d. Bewegungsdaten(Cashflows) der Geschäfte
Data type: JBRBEWEGOptional: No
Call by Reference: No ( called with pass by value option)
E_EXPOSURE - Tab. d. Ergebnisse der Methode Exposure
Data type: VTVCASHFLOptional: Yes
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
MARKET_DATA_RATES - Fehler Marktdaten Zinsen
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
MARKET_DATA_SPOT - Fehler Marktdaten Kurse
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NO_CALC - Fehler Berechnung
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NO_DATA_IN_ATPA - Kurveninformationen fehlen
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for FX_TERMIN_METHODS Function Module
The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.| DATA: | ||||
| lv_akt_datum | TYPE SY-DATUM, " SY-DATUM | |||
| lt_e_cashflow | TYPE STANDARD TABLE OF VTVCASHFL, " | |||
| lv_market_data_rates | TYPE VTVCASHFL, " | |||
| lv_i_vzbest | TYPE JBRBEST, " | |||
| lt_e_methoden | TYPE STANDARD TABLE OF VTVMETHOD, " | |||
| lv_market_data_spot | TYPE VTVMETHOD, " | |||
| lv_no_calc | TYPE VTVMETHOD, " | |||
| lv_res_curr | TYPE JBRBEST-SBWHR, " | |||
| lt_i_methoden | TYPE STANDARD TABLE OF VTVMETHOD, " | |||
| lv_auswtyp | TYPE ATVMO-AUSWT, " '01' | |||
| lt_i_vzbeweg | TYPE STANDARD TABLE OF JBRBEWEG, " | |||
| lv_no_data_in_atpa | TYPE JBRBEWEG, " | |||
| lv_i_mseg | TYPE JBRMSEG, " | |||
| lt_e_exposure | TYPE STANDARD TABLE OF VTVCASHFL. " |
|   CALL FUNCTION 'FX_TERMIN_METHODS' "Steuerung des Terminmethodenrechners |
| EXPORTING | ||
| AKT_DATUM | = lv_akt_datum | |
| I_VZBEST | = lv_i_vzbest | |
| RES_CURR | = lv_res_curr | |
| AUSWTYP | = lv_auswtyp | |
| I_MSEG | = lv_i_mseg | |
| TABLES | ||
| E_CASHFLOW | = lt_e_cashflow | |
| E_METHODEN | = lt_e_methoden | |
| I_METHODEN | = lt_i_methoden | |
| I_VZBEWEG | = lt_i_vzbeweg | |
| E_EXPOSURE | = lt_e_exposure | |
| EXCEPTIONS | ||
| MARKET_DATA_RATES = 1 | ||
| MARKET_DATA_SPOT = 2 | ||
| NO_CALC = 3 | ||
| NO_DATA_IN_ATPA = 4 | ||
| . " FX_TERMIN_METHODS | ||
ABAP code using 7.40 inline data declarations to call FM FX_TERMIN_METHODS
The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.| "SELECT single DATUM FROM SY INTO @DATA(ld_akt_datum). | ||||
| DATA(ld_akt_datum) | = SY-DATUM. | |||
| "SELECT single SBWHR FROM JBRBEST INTO @DATA(ld_res_curr). | ||||
| "SELECT single AUSWT FROM ATVMO INTO @DATA(ld_auswtyp). | ||||
| DATA(ld_auswtyp) | = '01'. | |||
Search for further information about these or an SAP related objects