Enterprise Resource Planning Blogs by SAP
Get insights and updates about cloud ERP and RISE with SAP, SAP S/4HANA and SAP S/4HANA Cloud, and more enterprise management capabilities with SAP blog posts.
cancel
Showing results for 
Search instead for 
Did you mean: 
Kaz_Iwamoto
Advisor
Advisor
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”.

 

SAP Notes:

2220005 - S/4 HANA: Data Model Changes in Pricing and Condition Technique

2267442 - S4TWL - Pricing Data Model Simplification

2267308 - S4TWL - Data Model Changes in SD Pricing

 

 

Brought to you by the SAP S/4HANA Customer Care and RIG
9 Comments