SAP FVIE_APP_DATA_PUT Function Module for
FVIE_APP_DATA_PUT is a standard fvie app data put 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 fvie app data put FM, simply by entering the name FVIE_APP_DATA_PUT into the relevant SAP transaction such as SE37 or SE38.
Function Group: FVIE
Program Name: SAPLFVIE
Main Program:
Appliation area: F
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FVIE_APP_DATA_PUT 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 'FVIE_APP_DATA_PUT'".
EXPORTING
I_INTRENO = "
* I_BUKRS = ' ' "
* I_SWENR = ' ' "
* I_EIGT_VERWALTUNG = ' ' "
I_LOAD_FLAG = "
* I_RFAKT = ' ' "
I_APPL = "
* I_UPDATE_FLAG = 'X' "
* I_OBJNR = ' ' "
TABLES
IT_XVIEIGE = "
IT_YVIEIGE = "
IMPORTING Parameters details for FVIE_APP_DATA_PUT
I_INTRENO -
Data type: VIEIGE-INTRENOOptional: No
Call by Reference: No ( called with pass by value option)
I_BUKRS -
Data type: T001-BUKRSDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_SWENR -
Data type: VIOB01-SWENRDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_EIGT_VERWALTUNG -
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_LOAD_FLAG -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
I_RFAKT -
Data type: VIEIGE-RFAKTDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_APPL -
Data type: TPZ12-APPLOptional: No
Call by Reference: No ( called with pass by value option)
I_UPDATE_FLAG -
Data type:Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_OBJNR -
Data type: SANO1-OBJNRDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for FVIE_APP_DATA_PUT
IT_XVIEIGE -
Data type: AVIEIGEOptional: No
Call by Reference: No ( called with pass by value option)
IT_YVIEIGE -
Data type: AVIEIGEOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for FVIE_APP_DATA_PUT 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_i_intreno | TYPE VIEIGE-INTRENO, " | |||
| lt_it_xvieige | TYPE STANDARD TABLE OF AVIEIGE, " | |||
| lv_i_bukrs | TYPE T001-BUKRS, " SPACE | |||
| lt_it_yvieige | TYPE STANDARD TABLE OF AVIEIGE, " | |||
| lv_i_swenr | TYPE VIOB01-SWENR, " SPACE | |||
| lv_i_eigt_verwaltung | TYPE VIOB01, " SPACE | |||
| lv_i_load_flag | TYPE VIOB01, " | |||
| lv_i_rfakt | TYPE VIEIGE-RFAKT, " SPACE | |||
| lv_i_appl | TYPE TPZ12-APPL, " | |||
| lv_i_update_flag | TYPE TPZ12, " 'X' | |||
| lv_i_objnr | TYPE SANO1-OBJNR. " SPACE |
|   CALL FUNCTION 'FVIE_APP_DATA_PUT' " |
| EXPORTING | ||
| I_INTRENO | = lv_i_intreno | |
| I_BUKRS | = lv_i_bukrs | |
| I_SWENR | = lv_i_swenr | |
| I_EIGT_VERWALTUNG | = lv_i_eigt_verwaltung | |
| I_LOAD_FLAG | = lv_i_load_flag | |
| I_RFAKT | = lv_i_rfakt | |
| I_APPL | = lv_i_appl | |
| I_UPDATE_FLAG | = lv_i_update_flag | |
| I_OBJNR | = lv_i_objnr | |
| TABLES | ||
| IT_XVIEIGE | = lt_it_xvieige | |
| IT_YVIEIGE | = lt_it_yvieige | |
| . " FVIE_APP_DATA_PUT | ||
ABAP code using 7.40 inline data declarations to call FM FVIE_APP_DATA_PUT
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 INTRENO FROM VIEIGE INTO @DATA(ld_i_intreno). | ||||
| "SELECT single BUKRS FROM T001 INTO @DATA(ld_i_bukrs). | ||||
| DATA(ld_i_bukrs) | = ' '. | |||
| "SELECT single SWENR FROM VIOB01 INTO @DATA(ld_i_swenr). | ||||
| DATA(ld_i_swenr) | = ' '. | |||
| DATA(ld_i_eigt_verwaltung) | = ' '. | |||
| "SELECT single RFAKT FROM VIEIGE INTO @DATA(ld_i_rfakt). | ||||
| DATA(ld_i_rfakt) | = ' '. | |||
| "SELECT single APPL FROM TPZ12 INTO @DATA(ld_i_appl). | ||||
| DATA(ld_i_update_flag) | = 'X'. | |||
| "SELECT single OBJNR FROM SANO1 INTO @DATA(ld_i_objnr). | ||||
| DATA(ld_i_objnr) | = ' '. | |||
Search for further information about these or an SAP related objects