S4H Konv PRCD - Elements

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 4

CDS View "V_KONV" in SAP S/4HANA On Premise

Kaz_Iwamoto
Advisor Options

05-12-2020 1:49 AM
7 Kudos

Introduction

This blog will show you how to use CDS View “V_KONV” for SD, MM
Consultants.

This is valid for S/4HANA any on premise version.

What is V_KONV

Pricing model has been changed in SAP S/4HANA. Table “KONV” will
be no more used in SAP S/4HANA.

Table “PRCD_ELEMENTS” replaces table “KONV”.

If your custom programs is using the table “KONV”, you can use a
CDS View “V_KONV” instead of the table “PRCD_ELEMENTS”. Because
the Table “PRCD_ELEMENTS” stores pricing data different way than
the table “KONV”. So, the CDS View “V_KONV” shows the pricing data
of the “PRCD_ELEMENTS“ as same as the pricing data of the table
“KONV” in SAP ERP.

KONV in SAP ERP


Purchase order price example:

The KONV data example

Field “KNUMV” of Table “EKKO” is Field “KNUMV” of table “KONV”.

The values are 10 times bigger than what you can see as the
Purchase Order Pricing.

PRCD_ELEMENTS in SAP S/4HANA

Purchase order price example: It is as same as the SAP ERP above


pricing data.
PRCD_ELEMENTS data in SAP S/4HANA example:

Field “KNUMV” of Table “EKKO” is Field “KNUMV” of table


“PRCD_ELEMENTS”.

It seems to be as same as what you can see in purchase order


document price.

How to use CDS View “V_KONV”

You can read "V_KONV" by ABAP program.

-----Sample program in SAP S/4HANA-----------------

REPORT ZV_KONV_TEST1.

select * from v_konv


where ( knumv = '1000005394' ) into table @DATA(RESULT).
Break-point.

------------------

The sample program result:

It is as same as KONV data in SAP ERP.

The values are 10 times bigger than what you can see as the
Purchase Order Pricing.

Conclusion:

You can understand how to use the CDS View “V_KONV”.

You might also like