SAP FVLC_EDIT_DATA Function Module for ICI: Changing
FVLC_EDIT_DATA is a standard fvlc edit data SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for ICI: Changing 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 fvlc edit data FM, simply by entering the name FVLC_EDIT_DATA into the relevant SAP transaction such as SE37 or SE38.
Function Group: FVLC
Program Name: SAPLFVLC
Main Program: SAPLFVLC
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FVLC_EDIT_DATA 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 'FVLC_EDIT_DATA'"ICI: Changing.
EXPORTING
IV_INTRENO = "
IV_ORT = "City
* IV_DISPLAY = 'X' "
* IS_VIMI01 = "
* IS_VIOB01 = "
* IS_VIOB02 = "
* IS_RF60E = "
* IS_T001 = "
IMPORTING
EV_CHANGE = "
IMPORTING Parameters details for FVLC_EDIT_DATA
IV_INTRENO -
Data type: VVINTRENOOptional: No
Call by Reference: No ( called with pass by value option)
IV_ORT - City
Data type: SANS1-ORT01Optional: No
Call by Reference: No ( called with pass by value option)
IV_DISPLAY -
Data type: XFELDDefault: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
IS_VIMI01 -
Data type: VIMI01Optional: Yes
Call by Reference: No ( called with pass by value option)
IS_VIOB01 -
Data type: VIOB01Optional: Yes
Call by Reference: No ( called with pass by value option)
IS_VIOB02 -
Data type: VIOB02Optional: Yes
Call by Reference: No ( called with pass by value option)
IS_RF60E -
Data type: RF60EOptional: Yes
Call by Reference: No ( called with pass by value option)
IS_T001 -
Data type: T001Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for FVLC_EDIT_DATA
EV_CHANGE -
Data type: XFELDOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for FVLC_EDIT_DATA 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_ev_change | TYPE XFELD, " | |||
| lv_iv_intreno | TYPE VVINTRENO, " | |||
| lv_iv_ort | TYPE SANS1-ORT01, " | |||
| lv_iv_display | TYPE XFELD, " 'X' | |||
| lv_is_vimi01 | TYPE VIMI01, " | |||
| lv_is_viob01 | TYPE VIOB01, " | |||
| lv_is_viob02 | TYPE VIOB02, " | |||
| lv_is_rf60e | TYPE RF60E, " | |||
| lv_is_t001 | TYPE T001. " |
|   CALL FUNCTION 'FVLC_EDIT_DATA' "ICI: Changing |
| EXPORTING | ||
| IV_INTRENO | = lv_iv_intreno | |
| IV_ORT | = lv_iv_ort | |
| IV_DISPLAY | = lv_iv_display | |
| IS_VIMI01 | = lv_is_vimi01 | |
| IS_VIOB01 | = lv_is_viob01 | |
| IS_VIOB02 | = lv_is_viob02 | |
| IS_RF60E | = lv_is_rf60e | |
| IS_T001 | = lv_is_t001 | |
| IMPORTING | ||
| EV_CHANGE | = lv_ev_change | |
| . " FVLC_EDIT_DATA | ||
ABAP code using 7.40 inline data declarations to call FM FVLC_EDIT_DATA
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 ORT01 FROM SANS1 INTO @DATA(ld_iv_ort). | ||||
| DATA(ld_iv_display) | = 'X'. | |||
Search for further information about these or an SAP related objects