SAP K_VARIANCES_READ Function Module for









K_VARIANCES_READ is a standard k variances read 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 k variances read FM, simply by entering the name K_VARIANCES_READ into the relevant SAP transaction such as SE37 or SE38.

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



Function K_VARIANCES_READ 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 'K_VARIANCES_READ'"
EXPORTING
PAR_AWKUM = "
PAR_AWVRS = "
PAR_GJAHR1 = "
* PAR_GJAHR2 = 0 "
PAR_KOKRS = "
PAR_OBJNR = "
PAR_POPER1 = "
* PAR_POPER2 = 0 "

TABLES
PTA_KV0131 = "

EXCEPTIONS
SYSTEM_ERROR = 1
.



IMPORTING Parameters details for K_VARIANCES_READ

PAR_AWKUM -

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

PAR_AWVRS -

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

PAR_GJAHR1 -

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

PAR_GJAHR2 -

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

PAR_KOKRS -

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

PAR_OBJNR -

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

PAR_POPER1 -

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

PAR_POPER2 -

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

TABLES Parameters details for K_VARIANCES_READ

PTA_KV0131 -

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

EXCEPTIONS details

SYSTEM_ERROR -

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

Copy and paste ABAP code example for K_VARIANCES_READ 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_par_awkum  TYPE TKV01-AWKUM, "   
lt_pta_kv0131  TYPE STANDARD TABLE OF KV013, "   
lv_system_error  TYPE KV013, "   
lv_par_awvrs  TYPE TKV09-AWVRS, "   
lv_par_gjahr1  TYPE T009B-BDATJ, "   
lv_par_gjahr2  TYPE T009B-BDATJ, "   0
lv_par_kokrs  TYPE TKV09-KOKRS, "   
lv_par_objnr  TYPE KV011-OBJNR, "   
lv_par_poper1  TYPE T009B-POPER, "   
lv_par_poper2  TYPE T009B-POPER. "   0

  CALL FUNCTION 'K_VARIANCES_READ'  "
    EXPORTING
         PAR_AWKUM = lv_par_awkum
         PAR_AWVRS = lv_par_awvrs
         PAR_GJAHR1 = lv_par_gjahr1
         PAR_GJAHR2 = lv_par_gjahr2
         PAR_KOKRS = lv_par_kokrs
         PAR_OBJNR = lv_par_objnr
         PAR_POPER1 = lv_par_poper1
         PAR_POPER2 = lv_par_poper2
    TABLES
         PTA_KV0131 = lt_pta_kv0131
    EXCEPTIONS
        SYSTEM_ERROR = 1
. " K_VARIANCES_READ




ABAP code using 7.40 inline data declarations to call FM K_VARIANCES_READ

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 AWKUM FROM TKV01 INTO @DATA(ld_par_awkum).
 
 
 
"SELECT single AWVRS FROM TKV09 INTO @DATA(ld_par_awvrs).
 
"SELECT single BDATJ FROM T009B INTO @DATA(ld_par_gjahr1).
 
"SELECT single BDATJ FROM T009B INTO @DATA(ld_par_gjahr2).
 
"SELECT single KOKRS FROM TKV09 INTO @DATA(ld_par_kokrs).
 
"SELECT single OBJNR FROM KV011 INTO @DATA(ld_par_objnr).
 
"SELECT single POPER FROM T009B INTO @DATA(ld_par_poper1).
 
"SELECT single POPER FROM T009B INTO @DATA(ld_par_poper2).
 


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!