SAP FVZK_MODIFY_IVZZKOPO_NEU Function Module for









FVZK_MODIFY_IVZZKOPO_NEU is a standard fvzk modify ivzzkopo neu 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 modify ivzzkopo neu FM, simply by entering the name FVZK_MODIFY_IVZZKOPO_NEU 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_MODIFY_IVZZKOPO_NEU 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_MODIFY_IVZZKOPO_NEU'"
EXPORTING
* FIRSTLINE = 1 "
VZZKOPO = "
* IGNORE_EMPTY = ' ' "
* KZ_PLAUSI = ' ' "
* MOD_DGUELKK = ' ' "
* MOD_DGUELKP = ' ' "
* MOD_NLFDANG = ' ' "
* MOD_NSTUFE = ' ' "
* SCREEN_FLAG = ' ' "
STEP_INDEX = "

IMPORTING
AENDERUNG = "
CHANGED_NOW = "

TABLES
IVZZKOPO = "

EXCEPTIONS
GENERAL_ERROR = 1 NOT_FOUND = 2 PLAUSI_ERROR = 3 VERSTOSS_OBLIGATORISCH = 4
.



IMPORTING Parameters details for FVZK_MODIFY_IVZZKOPO_NEU

FIRSTLINE -

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

VZZKOPO -

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

IGNORE_EMPTY -

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

KZ_PLAUSI -

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

MOD_DGUELKK -

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

MOD_DGUELKP -

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

MOD_NLFDANG -

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

MOD_NSTUFE -

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

SCREEN_FLAG -

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

STEP_INDEX -

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

EXPORTING Parameters details for FVZK_MODIFY_IVZZKOPO_NEU

AENDERUNG -

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

CHANGED_NOW -

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

TABLES Parameters details for FVZK_MODIFY_IVZZKOPO_NEU

IVZZKOPO -

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

EXCEPTIONS details

GENERAL_ERROR -

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

NOT_FOUND -

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

PLAUSI_ERROR -

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

VERSTOSS_OBLIGATORISCH -

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

Copy and paste ABAP code example for FVZK_MODIFY_IVZZKOPO_NEU 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_ivzzkopo  TYPE STANDARD TABLE OF VVZZKOPO, "   
lv_aenderung  TYPE VVZZKOPO, "   
lv_firstline  TYPE SY-TLENG, "   1
lv_general_error  TYPE SY, "   
lv_vzzkopo  TYPE VZZKOPO, "   
lv_not_found  TYPE VZZKOPO, "   
lv_changed_now  TYPE VZZKOPO, "   
lv_ignore_empty  TYPE VZZKOPO, "   SPACE
lv_kz_plausi  TYPE VZZKOPO, "   SPACE
lv_plausi_error  TYPE VZZKOPO, "   
lv_mod_dguelkk  TYPE VZZKOPO, "   SPACE
lv_verstoss_obligatorisch  TYPE VZZKOPO, "   
lv_mod_dguelkp  TYPE VZZKOPO, "   SPACE
lv_mod_nlfdang  TYPE VZZKOPO, "   SPACE
lv_mod_nstufe  TYPE VZZKOPO, "   SPACE
lv_screen_flag  TYPE VZZKOPO, "   SPACE
lv_step_index  TYPE SY-STEPL. "   

  CALL FUNCTION 'FVZK_MODIFY_IVZZKOPO_NEU'  "
    EXPORTING
         FIRSTLINE = lv_firstline
         VZZKOPO = lv_vzzkopo
         IGNORE_EMPTY = lv_ignore_empty
         KZ_PLAUSI = lv_kz_plausi
         MOD_DGUELKK = lv_mod_dguelkk
         MOD_DGUELKP = lv_mod_dguelkp
         MOD_NLFDANG = lv_mod_nlfdang
         MOD_NSTUFE = lv_mod_nstufe
         SCREEN_FLAG = lv_screen_flag
         STEP_INDEX = lv_step_index
    IMPORTING
         AENDERUNG = lv_aenderung
         CHANGED_NOW = lv_changed_now
    TABLES
         IVZZKOPO = lt_ivzzkopo
    EXCEPTIONS
        GENERAL_ERROR = 1
        NOT_FOUND = 2
        PLAUSI_ERROR = 3
        VERSTOSS_OBLIGATORISCH = 4
. " FVZK_MODIFY_IVZZKOPO_NEU




ABAP code using 7.40 inline data declarations to call FM FVZK_MODIFY_IVZZKOPO_NEU

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 TLENG FROM SY INTO @DATA(ld_firstline).
DATA(ld_firstline) = 1.
 
 
 
 
 
DATA(ld_ignore_empty) = ' '.
 
DATA(ld_kz_plausi) = ' '.
 
 
DATA(ld_mod_dguelkk) = ' '.
 
 
DATA(ld_mod_dguelkp) = ' '.
 
DATA(ld_mod_nlfdang) = ' '.
 
DATA(ld_mod_nstufe) = ' '.
 
DATA(ld_screen_flag) = ' '.
 
"SELECT single STEPL FROM SY INTO @DATA(ld_step_index).
 


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!