SAP FVLR_EDIT_DATA Function Module for IRE: Changing









FVLR_EDIT_DATA is a standard fvlr 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 IRE: 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 fvlr edit data FM, simply by entering the name FVLR_EDIT_DATA into the relevant SAP transaction such as SE37 or SE38.

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



Function FVLR_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 'FVLR_EDIT_DATA'"IRE: Changing
EXPORTING
IV_BUKRS = "
IV_INTRENO = "
* IV_DISPLAY = 'X' "
* IS_VIMIMV = "
* IS_RECNFLDS = "
* IS_VIOB01 = "
* IS_RF60E = "
* IS_RF60V = "
* IS_T001 = "

IMPORTING
EV_CHANGE = "

TABLES
IT_VVZZKOPO = "
.



IMPORTING Parameters details for FVLR_EDIT_DATA

IV_BUKRS -

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

IV_INTRENO -

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

IV_DISPLAY -

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

IS_VIMIMV -

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

IS_RECNFLDS -

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

IS_VIOB01 -

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

IS_RF60E -

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

IS_RF60V -

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

IS_T001 -

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

EXPORTING Parameters details for FVLR_EDIT_DATA

EV_CHANGE -

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

TABLES Parameters details for FVLR_EDIT_DATA

IT_VVZZKOPO -

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

Copy and paste ABAP code example for FVLR_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_iv_bukrs  TYPE VIMIMV-BUKRS, "   
lv_ev_change  TYPE XFELD, "   
lt_it_vvzzkopo  TYPE STANDARD TABLE OF VVZZKOPO, "   
lv_iv_intreno  TYPE VVINTRENO, "   
lv_iv_display  TYPE XFELD, "   'X'
lv_is_vimimv  TYPE VIMIMV, "   
lv_is_recnflds  TYPE RECNFLDS, "   
lv_is_viob01  TYPE VIOB01, "   
lv_is_rf60e  TYPE RF60E, "   
lv_is_rf60v  TYPE RF60V, "   
lv_is_t001  TYPE T001. "   

  CALL FUNCTION 'FVLR_EDIT_DATA'  "IRE: Changing
    EXPORTING
         IV_BUKRS = lv_iv_bukrs
         IV_INTRENO = lv_iv_intreno
         IV_DISPLAY = lv_iv_display
         IS_VIMIMV = lv_is_vimimv
         IS_RECNFLDS = lv_is_recnflds
         IS_VIOB01 = lv_is_viob01
         IS_RF60E = lv_is_rf60e
         IS_RF60V = lv_is_rf60v
         IS_T001 = lv_is_t001
    IMPORTING
         EV_CHANGE = lv_ev_change
    TABLES
         IT_VVZZKOPO = lt_it_vvzzkopo
. " FVLR_EDIT_DATA




ABAP code using 7.40 inline data declarations to call FM FVLR_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 BUKRS FROM VIMIMV INTO @DATA(ld_iv_bukrs).
 
 
 
 
DATA(ld_iv_display) = 'X'.
 
 
 
 
 
 
 


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!