SAP FVWE_CALCULATE_DURATION Function Module for Calculate Duration for ID Number in Securities Account and/or Company Code
FVWE_CALCULATE_DURATION is a standard fvwe calculate duration SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Calculate Duration for ID Number in Securities Account and/or Company Code 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 fvwe calculate duration FM, simply by entering the name FVWE_CALCULATE_DURATION into the relevant SAP transaction such as SE37 or SE38.
Function Group: FVWE
Program Name: SAPLFVWE
Main Program:
Appliation area: F
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FVWE_CALCULATE_DURATION 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 'FVWE_CALCULATE_DURATION'"Calculate Duration for ID Number in Securities Account and/or Company Code.
EXPORTING
* PV_STICHTAG = 00000000 "
* VARIANTE = 0 "Für welchen Fall soll Duration ermittelt werden?
* SZBMETH = 1 "
TABLES
ERGEBNIS = "Ergebnistabelle f. depotübergreifende Auswertung
I_BEPP = "Planned Records
I_BESTAND = "Stock Table
IMPORTING Parameters details for FVWE_CALCULATE_DURATION
PV_STICHTAG -
Data type: VZZBEPP-DBESTANDDefault: 00000000
Optional: Yes
Call by Reference: No ( called with pass by value option)
VARIANTE - Für welchen Fall soll Duration ermittelt werden?
Data type: SY-TABIXOptional: Yes
Call by Reference: No ( called with pass by value option)
SZBMETH -
Data type: VZZKOKO-SZBMETHDefault: 1
Optional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for FVWE_CALCULATE_DURATION
ERGEBNIS - Ergebnistabelle f. depotübergreifende Auswertung
Data type: REFFZINSOptional: No
Call by Reference: No ( called with pass by value option)
I_BEPP - Planned Records
Data type: VZZBEPPOptional: No
Call by Reference: No ( called with pass by value option)
I_BESTAND - Stock Table
Data type: REVALDOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for FVWE_CALCULATE_DURATION 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: | ||||
| lt_ergebnis | TYPE STANDARD TABLE OF REFFZINS, " | |||
| lv_pv_stichtag | TYPE VZZBEPP-DBESTAND, " 00000000 | |||
| lt_i_bepp | TYPE STANDARD TABLE OF VZZBEPP, " | |||
| lv_variante | TYPE SY-TABIX, " 0 | |||
| lv_szbmeth | TYPE VZZKOKO-SZBMETH, " 1 | |||
| lt_i_bestand | TYPE STANDARD TABLE OF REVALD. " |
|   CALL FUNCTION 'FVWE_CALCULATE_DURATION' "Calculate Duration for ID Number in Securities Account and/or Company Code |
| EXPORTING | ||
| PV_STICHTAG | = lv_pv_stichtag | |
| VARIANTE | = lv_variante | |
| SZBMETH | = lv_szbmeth | |
| TABLES | ||
| ERGEBNIS | = lt_ergebnis | |
| I_BEPP | = lt_i_bepp | |
| I_BESTAND | = lt_i_bestand | |
| . " FVWE_CALCULATE_DURATION | ||
ABAP code using 7.40 inline data declarations to call FM FVWE_CALCULATE_DURATION
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 DBESTAND FROM VZZBEPP INTO @DATA(ld_pv_stichtag). | ||||
| DATA(ld_pv_stichtag) | = 00000000. | |||
| "SELECT single TABIX FROM SY INTO @DATA(ld_variante). | ||||
| "SELECT single SZBMETH FROM VZZKOKO INTO @DATA(ld_szbmeth). | ||||
| DATA(ld_szbmeth) | = 1. | |||
Search for further information about these or an SAP related objects