SAP FVAE_CORRECT_NET_AMOUNT Function Module for









FVAE_CORRECT_NET_AMOUNT is a standard fvae correct net amount 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 correct net amount FM, simply by entering the name FVAE_CORRECT_NET_AMOUNT 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_CORRECT_NET_AMOUNT 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_CORRECT_NET_AMOUNT'"
EXPORTING
I_MWSKZ = "
* I_CALCDAT = ' ' "
* I_ONLY_WAERS = ' ' "
I_MWSKZ_VST = "
I_BUKRS = "
I_KUNNR_TXJCD = "
I_BUKRS_OBJ = "
I_LIFNR_TXJCD = "
I_NETTO = "
* I_BLDAT = ' ' "
* I_BUDAT = ' ' "

IMPORTING
E_NETTO = "

EXCEPTIONS
ERROR = 1
.



IMPORTING Parameters details for FVAE_CORRECT_NET_AMOUNT

I_MWSKZ -

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

I_CALCDAT -

Data type: SY-DATUM
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_ONLY_WAERS -

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

I_MWSKZ_VST -

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

I_BUKRS -

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

I_KUNNR_TXJCD -

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

I_BUKRS_OBJ -

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

I_LIFNR_TXJCD -

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

I_NETTO -

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

I_BLDAT -

Data type: SY-DATUM
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_BUDAT -

Data type: SY-DATUM
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for FVAE_CORRECT_NET_AMOUNT

E_NETTO -

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

EXCEPTIONS details

ERROR -

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

Copy and paste ABAP code example for FVAE_CORRECT_NET_AMOUNT 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_error  TYPE STRING, "   
lv_e_netto  TYPE VIVW09-BNETTO, "   
lv_i_mwskz  TYPE VIVW06-MWSKZ, "   
lv_i_calcdat  TYPE SY-DATUM, "   SPACE
lv_i_only_waers  TYPE SY, "   SPACE
lv_i_mwskz_vst  TYPE VIVW06-MWSKZ_VST, "   
lv_i_bukrs  TYPE T001-BUKRS, "   
lv_i_kunnr_txjcd  TYPE BSEG-TXJCD, "   
lv_i_bukrs_obj  TYPE T001-BUKRS, "   
lv_i_lifnr_txjcd  TYPE BSEG-TXJCD, "   
lv_i_netto  TYPE VIVW09-BNETTO, "   
lv_i_bldat  TYPE SY-DATUM, "   SPACE
lv_i_budat  TYPE SY-DATUM. "   SPACE

  CALL FUNCTION 'FVAE_CORRECT_NET_AMOUNT'  "
    EXPORTING
         I_MWSKZ = lv_i_mwskz
         I_CALCDAT = lv_i_calcdat
         I_ONLY_WAERS = lv_i_only_waers
         I_MWSKZ_VST = lv_i_mwskz_vst
         I_BUKRS = lv_i_bukrs
         I_KUNNR_TXJCD = lv_i_kunnr_txjcd
         I_BUKRS_OBJ = lv_i_bukrs_obj
         I_LIFNR_TXJCD = lv_i_lifnr_txjcd
         I_NETTO = lv_i_netto
         I_BLDAT = lv_i_bldat
         I_BUDAT = lv_i_budat
    IMPORTING
         E_NETTO = lv_e_netto
    EXCEPTIONS
        ERROR = 1
. " FVAE_CORRECT_NET_AMOUNT




ABAP code using 7.40 inline data declarations to call FM FVAE_CORRECT_NET_AMOUNT

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 BNETTO FROM VIVW09 INTO @DATA(ld_e_netto).
 
"SELECT single MWSKZ FROM VIVW06 INTO @DATA(ld_i_mwskz).
 
"SELECT single DATUM FROM SY INTO @DATA(ld_i_calcdat).
DATA(ld_i_calcdat) = ' '.
 
DATA(ld_i_only_waers) = ' '.
 
"SELECT single MWSKZ_VST FROM VIVW06 INTO @DATA(ld_i_mwskz_vst).
 
"SELECT single BUKRS FROM T001 INTO @DATA(ld_i_bukrs).
 
"SELECT single TXJCD FROM BSEG INTO @DATA(ld_i_kunnr_txjcd).
 
"SELECT single BUKRS FROM T001 INTO @DATA(ld_i_bukrs_obj).
 
"SELECT single TXJCD FROM BSEG INTO @DATA(ld_i_lifnr_txjcd).
 
"SELECT single BNETTO FROM VIVW09 INTO @DATA(ld_i_netto).
 
"SELECT single DATUM FROM SY INTO @DATA(ld_i_bldat).
DATA(ld_i_bldat) = ' '.
 
"SELECT single DATUM FROM SY INTO @DATA(ld_i_budat).
DATA(ld_i_budat) = ' '.
 


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!