SAP FVVY_CLASS_DATA_PLAUSI_SEC Function Module for Securities Class Data, Plausibility Check









FVVY_CLASS_DATA_PLAUSI_SEC is a standard fvvy class data plausi sec SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Securities Class Data, Plausibility Check 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 fvvy class data plausi sec FM, simply by entering the name FVVY_CLASS_DATA_PLAUSI_SEC into the relevant SAP transaction such as SE37 or SE38.

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



Function FVVY_CLASS_DATA_PLAUSI_SEC 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 'FVVY_CLASS_DATA_PLAUSI_SEC'"Securities Class Data, Plausibility Check
EXPORTING
* I_PLAUSI_NR = "Nummer einer einzelnen Plausi
* I_VZSKOKO = "Struktur VZSKOKO
* I_VWPANAN = "Tabelle VWPANAN
* I_RANGE_PLAUSI = "Range für mehrere Plausis
* I_ZAEHLER = "
* I_BUFFER_FLAG = "Lesen aus gepufferten Tabellen (binary) !!
* I_MODE = "Modus (10,20,30)
* I_VWPANLA = "Struktur VWPANLA
* I_VWPTERM = "Struktur VWPTERM
* I_VWPANLE = "Struktur VWPANLE
* I_VWPAKTI = "Struktur VWPAKTI
* I_VZZKOKO = "Struktur VZZKOKO
* I_VZZKOPO = "Tabelle VZZKOPO

IMPORTING
E_ERR_FLAG = "Errors have occurred
E_WAR_FLAG = "Warning message occurred
.



IMPORTING Parameters details for FVVY_CLASS_DATA_PLAUSI_SEC

I_PLAUSI_NR - Nummer einer einzelnen Plausi

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

I_VZSKOKO - Struktur VZSKOKO

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

I_VWPANAN - Tabelle VWPANAN

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

I_RANGE_PLAUSI - Range für mehrere Plausis

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

I_ZAEHLER -

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

I_BUFFER_FLAG - Lesen aus gepufferten Tabellen (binary) !!

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

I_MODE - Modus (10,20,30)

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

I_VWPANLA - Struktur VWPANLA

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

I_VWPTERM - Struktur VWPTERM

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

I_VWPANLE - Struktur VWPANLE

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

I_VWPAKTI - Struktur VWPAKTI

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

I_VZZKOKO - Struktur VZZKOKO

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

I_VZZKOPO - Tabelle VZZKOPO

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

EXPORTING Parameters details for FVVY_CLASS_DATA_PLAUSI_SEC

E_ERR_FLAG - Errors have occurred

Data type: C
Optional: No
Call by Reference: Yes

E_WAR_FLAG - Warning message occurred

Data type: C
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for FVVY_CLASS_DATA_PLAUSI_SEC 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_e_err_flag  TYPE C, "   
lv_i_plausi_nr  TYPE I, "   
lv_i_vzskoko  TYPE VZSKOKO, "   
lv_i_vwpanan  TYPE TRPM_IT_VWPANAN, "   
lv_i_range_plausi  TYPE TRSEP_IT_RAN_PLAUSI, "   
lv_i_zaehler  TYPE SY-TABIX, "   
lv_e_war_flag  TYPE C, "   
lv_i_buffer_flag  TYPE C, "   
lv_i_mode  TYPE TRSEP_MODE, "   
lv_i_vwpanla  TYPE VWPANLA, "   
lv_i_vwpterm  TYPE VWPTERM, "   
lv_i_vwpanle  TYPE VWPANLE, "   
lv_i_vwpakti  TYPE VWPAKTI, "   
lv_i_vzzkoko  TYPE VZZKOKO, "   
lv_i_vzzkopo  TYPE TRPM_IT_VZZKOPO. "   

  CALL FUNCTION 'FVVY_CLASS_DATA_PLAUSI_SEC'  "Securities Class Data, Plausibility Check
    EXPORTING
         I_PLAUSI_NR = lv_i_plausi_nr
         I_VZSKOKO = lv_i_vzskoko
         I_VWPANAN = lv_i_vwpanan
         I_RANGE_PLAUSI = lv_i_range_plausi
         I_ZAEHLER = lv_i_zaehler
         I_BUFFER_FLAG = lv_i_buffer_flag
         I_MODE = lv_i_mode
         I_VWPANLA = lv_i_vwpanla
         I_VWPTERM = lv_i_vwpterm
         I_VWPANLE = lv_i_vwpanle
         I_VWPAKTI = lv_i_vwpakti
         I_VZZKOKO = lv_i_vzzkoko
         I_VZZKOPO = lv_i_vzzkopo
    IMPORTING
         E_ERR_FLAG = lv_e_err_flag
         E_WAR_FLAG = lv_e_war_flag
. " FVVY_CLASS_DATA_PLAUSI_SEC




ABAP code using 7.40 inline data declarations to call FM FVVY_CLASS_DATA_PLAUSI_SEC

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 TABIX FROM SY INTO @DATA(ld_i_zaehler).
 
 
 
 
 
 
 
 
 
 


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!