Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

How to Retrieve Purchase order TAX value price

Former Member
0 Kudos

Hi,

I want to retrieve Purchase order TAX value price from the purchase order is there any function module to retrieve this value. Or from which table we can retrieve this value using purchase order no.

Thanks in advance

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi Pradeep,

FM CALCULATE_TAX_ITEM gives u the tax amounts for an item in PO, u need to pass the PO details as export parameters..

Hope it helps,

Regards,

Bikash

2 REPLIES 2

Former Member
0 Kudos

Hi

Try to see in the conditions table KONV, here you can get all pricing conditions of the PO:

SELECT * FROM EKKO WHERE EBELN = .......

SELECT * FROM KONV WHERE KNUMV = EKKO-KNUMV

In the field KONV-KSCHL you can find the kind of condition, so you should get only the tax condition.

Max

Former Member
0 Kudos

Hi Pradeep,

FM CALCULATE_TAX_ITEM gives u the tax amounts for an item in PO, u need to pass the PO details as export parameters..

Hope it helps,

Regards,

Bikash