SAP FVZK_SAVE_VZZKOPO Function Module for









FVZK_SAVE_VZZKOPO is a standard fvzk save vzzkopo SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 fvzk save vzzkopo FM, simply by entering the name FVZK_SAVE_VZZKOPO into the relevant SAP transaction such as SE37 or SE38.

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



Function FVZK_SAVE_VZZKOPO 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 'FVZK_SAVE_VZZKOPO'"
EXPORTING
* DEFAULT_VALUES = ' ' "
* DGUEL_KK = ' ' "
* OHNE_VERBUCHER = ' ' "
* RKEY1 = ' ' "
* RKEY2 = ' ' "
* RKEY3 = ' ' "

IMPORTING
E_RESULT = "

TABLES
X_VZZKOPO = "
Y_VZZKOPO = "

EXCEPTIONS
NAMETAB_ERROR = 1 UPDATE_ERROR = 2
.



IMPORTING Parameters details for FVZK_SAVE_VZZKOPO

DEFAULT_VALUES -

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

DGUEL_KK -

Data type: VZZKOPO-DGUEL_KK
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

OHNE_VERBUCHER -

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

RKEY1 -

Data type: VZZKOPO-RKEY1
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

RKEY2 -

Data type: VZZKOPO-RKEY2
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

RKEY3 -

Data type: VZZKOPO-RKEY3
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for FVZK_SAVE_VZZKOPO

E_RESULT -

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

TABLES Parameters details for FVZK_SAVE_VZZKOPO

X_VZZKOPO -

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

Y_VZZKOPO -

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

EXCEPTIONS details

NAMETAB_ERROR -

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

UPDATE_ERROR -

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

Copy and paste ABAP code example for FVZK_SAVE_VZZKOPO 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_result  TYPE STRING, "   
lt_x_vzzkopo  TYPE STANDARD TABLE OF STRING, "   
lv_nametab_error  TYPE STRING, "   
lv_default_values  TYPE STRING, "   SPACE
lv_dguel_kk  TYPE VZZKOPO-DGUEL_KK, "   SPACE
lt_y_vzzkopo  TYPE STANDARD TABLE OF VZZKOPO, "   
lv_update_error  TYPE VZZKOPO, "   
lv_ohne_verbucher  TYPE VZZKOPO, "   SPACE
lv_rkey1  TYPE VZZKOPO-RKEY1, "   SPACE
lv_rkey2  TYPE VZZKOPO-RKEY2, "   SPACE
lv_rkey3  TYPE VZZKOPO-RKEY3. "   SPACE

  CALL FUNCTION 'FVZK_SAVE_VZZKOPO'  "
    EXPORTING
         DEFAULT_VALUES = lv_default_values
         DGUEL_KK = lv_dguel_kk
         OHNE_VERBUCHER = lv_ohne_verbucher
         RKEY1 = lv_rkey1
         RKEY2 = lv_rkey2
         RKEY3 = lv_rkey3
    IMPORTING
         E_RESULT = lv_e_result
    TABLES
         X_VZZKOPO = lt_x_vzzkopo
         Y_VZZKOPO = lt_y_vzzkopo
    EXCEPTIONS
        NAMETAB_ERROR = 1
        UPDATE_ERROR = 2
. " FVZK_SAVE_VZZKOPO




ABAP code using 7.40 inline data declarations to call FM FVZK_SAVE_VZZKOPO

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_default_values) = ' '.
 
"SELECT single DGUEL_KK FROM VZZKOPO INTO @DATA(ld_dguel_kk).
DATA(ld_dguel_kk) = ' '.
 
 
 
DATA(ld_ohne_verbucher) = ' '.
 
"SELECT single RKEY1 FROM VZZKOPO INTO @DATA(ld_rkey1).
DATA(ld_rkey1) = ' '.
 
"SELECT single RKEY2 FROM VZZKOPO INTO @DATA(ld_rkey2).
DATA(ld_rkey2) = ' '.
 
"SELECT single RKEY3 FROM VZZKOPO INTO @DATA(ld_rkey3).
DATA(ld_rkey3) = ' '.
 


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!