SAP FVD_EFFEKTIVZINS_BEWEG_SELEKT Function Module for Selects Flows Relevant for Effective Interest Rate









FVD_EFFEKTIVZINS_BEWEG_SELEKT is a standard fvd effektivzins beweg selekt SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Selects Flows Relevant for Effective Interest Rate 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 fvd effektivzins beweg selekt FM, simply by entering the name FVD_EFFEKTIVZINS_BEWEG_SELEKT into the relevant SAP transaction such as SE37 or SE38.

Function Group: FVDF
Program Name: SAPLFVDF
Main Program: SAPLFVDF
Appliation area: F
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function FVD_EFFEKTIVZINS_BEWEG_SELEKT 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 'FVD_EFFEKTIVZINS_BEWEG_SELEKT'"Selects Flows Relevant for Effective Interest Rate
EXPORTING
* I_ARTEFFZI = ' ' "' ' lt. JEFFZI / '1' JEFFZI2 / '2' JVGLEFFZ
* I_DRSALDO = '00000000' "
I_RANTYP = "Contract Type
* I_RSALDO = 0 "
* I_TAH_TZB0A = "Hashed Tabelle mit Bewegungsarten (Übersteuerung des Customizings)

TABLES
IBEPP = "
IEFFZ = "
.



IMPORTING Parameters details for FVD_EFFEKTIVZINS_BEWEG_SELEKT

I_ARTEFFZI - ' ' lt. JEFFZI / '1' JEFFZI2 / '2' JVGLEFFZ

Data type:
Default: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_DRSALDO -

Data type: VZZEFFZ-DDISPO
Default: '00000000'
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_RANTYP - Contract Type

Data type: RCFLEISTE-RANTYP
Optional: No
Call by Reference: No ( called with pass by value option)

I_RSALDO -

Data type: VZZBEPP-BCWHR
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_TAH_TZB0A - Hashed Tabelle mit Bewegungsarten (Übersteuerung des Customizings)

Data type: TRTY_H_TZB0A
Optional: Yes
Call by Reference: Yes

TABLES Parameters details for FVD_EFFEKTIVZINS_BEWEG_SELEKT

IBEPP -

Data type: VZZBEPP
Optional: No
Call by Reference: No ( called with pass by value option)

IEFFZ -

Data type: VZZEFFZ
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for FVD_EFFEKTIVZINS_BEWEG_SELEKT 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_ibepp  TYPE STANDARD TABLE OF VZZBEPP, "   
lv_i_arteffzi  TYPE VZZBEPP, "   ' '
lt_ieffz  TYPE STANDARD TABLE OF VZZEFFZ, "   
lv_i_drsaldo  TYPE VZZEFFZ-DDISPO, "   '00000000'
lv_i_rantyp  TYPE RCFLEISTE-RANTYP, "   
lv_i_rsaldo  TYPE VZZBEPP-BCWHR, "   0
lv_i_tah_tzb0a  TYPE TRTY_H_TZB0A. "   

  CALL FUNCTION 'FVD_EFFEKTIVZINS_BEWEG_SELEKT'  "Selects Flows Relevant for Effective Interest Rate
    EXPORTING
         I_ARTEFFZI = lv_i_arteffzi
         I_DRSALDO = lv_i_drsaldo
         I_RANTYP = lv_i_rantyp
         I_RSALDO = lv_i_rsaldo
         I_TAH_TZB0A = lv_i_tah_tzb0a
    TABLES
         IBEPP = lt_ibepp
         IEFFZ = lt_ieffz
. " FVD_EFFEKTIVZINS_BEWEG_SELEKT




ABAP code using 7.40 inline data declarations to call FM FVD_EFFEKTIVZINS_BEWEG_SELEKT

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.

 
DATA(ld_i_arteffzi) = ' '.
 
 
"SELECT single DDISPO FROM VZZEFFZ INTO @DATA(ld_i_drsaldo).
DATA(ld_i_drsaldo) = '00000000'.
 
"SELECT single RANTYP FROM RCFLEISTE INTO @DATA(ld_i_rantyp).
 
"SELECT single BCWHR FROM VZZBEPP INTO @DATA(ld_i_rsaldo).
 
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!