SAP FVAE_OBJECT_INTERVALS_MAINTAIN Function Module for









FVAE_OBJECT_INTERVALS_MAINTAIN is a standard fvae object intervals maintain 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 fvae object intervals maintain FM, simply by entering the name FVAE_OBJECT_INTERVALS_MAINTAIN into the relevant SAP transaction such as SE37 or SE38.

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



Function FVAE_OBJECT_INTERVALS_MAINTAIN 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 'FVAE_OBJECT_INTERVALS_MAINTAIN'"
EXPORTING
I_DATUM_LETZTE_ABRECHNUNG = "
I_DATUM_LETZTE_SOLLSTELLUNG = "
* I_DIALOG_MODE = 'ANZ' "
* I_DISPLAY_FLAG = 'X' "
I_RF62V = "
* I_AS_POPUP = ' ' "

IMPORTING
E_DATEN_VERAENDERT = "
E_NACHBUCHUNGEN_ABRECHNUNG = "
E_NACHBUCHUNGEN_SOLLSTELLUNG = "

TABLES
I_XVIVW07 = "
.



IMPORTING Parameters details for FVAE_OBJECT_INTERVALS_MAINTAIN

I_DATUM_LETZTE_ABRECHNUNG -

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

I_DATUM_LETZTE_SOLLSTELLUNG -

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

I_DIALOG_MODE -

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

I_DISPLAY_FLAG -

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

I_RF62V -

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

I_AS_POPUP -

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

EXPORTING Parameters details for FVAE_OBJECT_INTERVALS_MAINTAIN

E_DATEN_VERAENDERT -

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

E_NACHBUCHUNGEN_ABRECHNUNG -

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

E_NACHBUCHUNGEN_SOLLSTELLUNG -

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

TABLES Parameters details for FVAE_OBJECT_INTERVALS_MAINTAIN

I_XVIVW07 -

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

Copy and paste ABAP code example for FVAE_OBJECT_INTERVALS_MAINTAIN 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_i_xvivw07  TYPE STANDARD TABLE OF VIVW07, "   
lv_e_daten_veraendert  TYPE VIVW07, "   
lv_i_datum_letzte_abrechnung  TYPE VIVW01-DVWABR, "   
lv_e_nachbuchungen_abrechnung  TYPE VIVW01, "   
lv_i_datum_letzte_sollstellung  TYPE VIVW01-DVWSOLL, "   
lv_i_dialog_mode  TYPE VIVW01, "   'ANZ'
lv_e_nachbuchungen_sollstellung  TYPE VIVW01, "   
lv_i_display_flag  TYPE VIVW01, "   'X'
lv_i_rf62v  TYPE RF62V, "   
lv_i_as_popup  TYPE RF62V. "   ' '

  CALL FUNCTION 'FVAE_OBJECT_INTERVALS_MAINTAIN'  "
    EXPORTING
         I_DATUM_LETZTE_ABRECHNUNG = lv_i_datum_letzte_abrechnung
         I_DATUM_LETZTE_SOLLSTELLUNG = lv_i_datum_letzte_sollstellung
         I_DIALOG_MODE = lv_i_dialog_mode
         I_DISPLAY_FLAG = lv_i_display_flag
         I_RF62V = lv_i_rf62v
         I_AS_POPUP = lv_i_as_popup
    IMPORTING
         E_DATEN_VERAENDERT = lv_e_daten_veraendert
         E_NACHBUCHUNGEN_ABRECHNUNG = lv_e_nachbuchungen_abrechnung
         E_NACHBUCHUNGEN_SOLLSTELLUNG = lv_e_nachbuchungen_sollstellung
    TABLES
         I_XVIVW07 = lt_i_xvivw07
. " FVAE_OBJECT_INTERVALS_MAINTAIN




ABAP code using 7.40 inline data declarations to call FM FVAE_OBJECT_INTERVALS_MAINTAIN

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 DVWABR FROM VIVW01 INTO @DATA(ld_i_datum_letzte_abrechnung).
 
 
"SELECT single DVWSOLL FROM VIVW01 INTO @DATA(ld_i_datum_letzte_sollstellung).
 
DATA(ld_i_dialog_mode) = 'ANZ'.
 
 
DATA(ld_i_display_flag) = 'X'.
 
 
DATA(ld_i_as_popup) = ' '.
 


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!