SAP FVZK_LOAD_VZZKOPO Function Module for
FVZK_LOAD_VZZKOPO is a standard fvzk load 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 load vzzkopo FM, simply by entering the name FVZK_LOAD_VZZKOPO into the relevant SAP transaction such as SE37 or SE38.
Function Group: FVZK
Program Name: SAPLFVZK
Main Program: SAPLFVZK
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FVZK_LOAD_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_LOAD_VZZKOPO'".
EXPORTING
* DEFAULT_VALUES = ' ' "
* DGUEL_KP = ' ' "
* FLG_KOPA_READ = 'X' "
* GET_EMPTY = 'X' "
GSART = "
INIT_TABLES = "
KOKO_KEY = "
TABLES
IVZZKOPO = "
EXCEPTIONS
GROUP_NOT_FOUND = 1 KONDITION_NOT_FOUND = 2 SBEWZITI_DIFFERENT = 3 SKOART_NOT_FOUND = 4 TEXT_NOT_FOUND = 5
IMPORTING Parameters details for FVZK_LOAD_VZZKOPO
DEFAULT_VALUES -
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
DGUEL_KP -
Data type: VZZKOPO-DGUEL_KPDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
FLG_KOPA_READ -
Data type:Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
GET_EMPTY -
Data type:Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
GSART -
Data type: TZPA-GSARTOptional: No
Call by Reference: No ( called with pass by value option)
INIT_TABLES -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
KOKO_KEY -
Data type: RVZKOKOKEYOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for FVZK_LOAD_VZZKOPO
IVZZKOPO -
Data type: VVZZKOPOOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
GROUP_NOT_FOUND -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
KONDITION_NOT_FOUND -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
SBEWZITI_DIFFERENT -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
SKOART_NOT_FOUND -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
TEXT_NOT_FOUND -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for FVZK_LOAD_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: | ||||
| lt_ivzzkopo | TYPE STANDARD TABLE OF VVZZKOPO, " | |||
| lv_default_values | TYPE VVZZKOPO, " SPACE | |||
| lv_group_not_found | TYPE VVZZKOPO, " | |||
| lv_dguel_kp | TYPE VZZKOPO-DGUEL_KP, " SPACE | |||
| lv_kondition_not_found | TYPE VZZKOPO, " | |||
| lv_flg_kopa_read | TYPE VZZKOPO, " 'X' | |||
| lv_sbewziti_different | TYPE VZZKOPO, " | |||
| lv_get_empty | TYPE VZZKOPO, " 'X' | |||
| lv_skoart_not_found | TYPE VZZKOPO, " | |||
| lv_gsart | TYPE TZPA-GSART, " | |||
| lv_text_not_found | TYPE TZPA, " | |||
| lv_init_tables | TYPE TZPA, " | |||
| lv_koko_key | TYPE RVZKOKOKEY. " |
|   CALL FUNCTION 'FVZK_LOAD_VZZKOPO' " |
| EXPORTING | ||
| DEFAULT_VALUES | = lv_default_values | |
| DGUEL_KP | = lv_dguel_kp | |
| FLG_KOPA_READ | = lv_flg_kopa_read | |
| GET_EMPTY | = lv_get_empty | |
| GSART | = lv_gsart | |
| INIT_TABLES | = lv_init_tables | |
| KOKO_KEY | = lv_koko_key | |
| TABLES | ||
| IVZZKOPO | = lt_ivzzkopo | |
| EXCEPTIONS | ||
| GROUP_NOT_FOUND = 1 | ||
| KONDITION_NOT_FOUND = 2 | ||
| SBEWZITI_DIFFERENT = 3 | ||
| SKOART_NOT_FOUND = 4 | ||
| TEXT_NOT_FOUND = 5 | ||
| . " FVZK_LOAD_VZZKOPO | ||
ABAP code using 7.40 inline data declarations to call FM FVZK_LOAD_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_KP FROM VZZKOPO INTO @DATA(ld_dguel_kp). | ||||
| DATA(ld_dguel_kp) | = ' '. | |||
| DATA(ld_flg_kopa_read) | = 'X'. | |||
| DATA(ld_get_empty) | = 'X'. | |||
| "SELECT single GSART FROM TZPA INTO @DATA(ld_gsart). | ||||
Search for further information about these or an SAP related objects