cancel
Showing results for 
Search instead for 
Did you mean: 

Condition Table

Former Member
0 Kudos

I m working on SAP SD sales Order (Conditions for Pricing elements) ,

In ABAP report i have to display " Condition Value " of Sales Order.

In which standard SAP table Condition Type and Condition values are stored.

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi,

You can refer tables VBAK and KONV.

Select field KNUMV from VBAK where VBELN = " Sales Order number"

Select condition value (KWERT) from table KONV with Condition type (KSCHL) and DOc Condition (KNUMV) got from above step as key fields.

Hope this helps

Former Member
0 Kudos

I m working on SAP SD sales Order (Conditions for Pricing elements) ,

In ABAP report i have to display " Condition Value " of Sales Order.

In which standard SAP table Condition Type and Condition values are stored.

Logic for Sales Order Net Value can be found in VBAK( Table ) - NETWR ( field).

Logic for Particular condition type value say eg PR00

We have the Sales Doc no ie VBAK -VBELN.

Select Doc COndition No

Select VBAK-KNUMV where VBAK -VBELN EQ Sales Order No

Then Select KONV-KWERT where KONV -KNUMV EQ VBAK-KNUMV

and KONV- KSCHL EQ PR00

Rohit

former_member566877
Active Participant
0 Kudos

Hi,

Check for tables starting with A series.

Thanks

Krish.

Former Member
0 Kudos

Thanks for reply,

Basically i m new with this module, so if u can give the table name.

Thanx.

Former Member
0 Kudos

Great .. Problem is solved.

Thanx,

SidhiK