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: 

condition tables for taxes

Former Member
0 Kudos

Dear Experts,

I want to capture the data of tax conditions and print the same on the P.O. print. Please tell me in which tables the data of Purchase Order taxes like Excise duties, Vat, Cst, Service tax, Lst, are maintained.

Regards,

Aaditya

7 REPLIES 7

Former Member
0 Kudos

You will have to get it from structure KOMP/H, KONP/H.

Regards,

Dakshesh

kailas_ugale
Active Contributor
0 Kudos

HI,

try following table

KONV, condition type

KONP-rate for condition type

check following link also

[http://wiki.sdn.sap.com/wiki/display/Snippets/FunctionModuletoCalculateTaxinPurchaseorderbasedoncondition+type]

Regards

Kailas Ugale

Former Member
0 Kudos

Try to use following function modules.

CALCULATE_TAX_FROM_NET_AMOUNT

CALCULATE_TAX_FROM_GROSSAMOUNT

Pass company code, tax code , currency and amount on which to be calculated

It will return you percentage and value KBETR and KAWRT with condition type KSCHL.

This can be used to find what is excise value or vat what ever applicable in that tax code.

Yes you will have to write a logic if condition type is say JMOP then that is excise and read the value.

Hope this helps

Regards

Sangeeta

tejyadav
Active Contributor
0 Kudos

Hi, Use

KOND - Conditions (Data)

KONV - Conditions (Transaction Data)

KONP - Conditions (Item)

KOMP - Pricing Communication Item

kunal_ingale
Active Contributor
0 Kudos

Hi

for excise check table J_1IEXCHDR for header

J_1IEXCDTL for item excise

The Table name used to find the Tax Values are

KOMV: Pricing Communications-Condition Record

KONV: Conditions (Transaction Data)

From the above tables you can refer the fields below.

KAWRT

KBETR

Fetch the corresponding records based on the field

KNTYP

refer following

[Link1|http://sample-code-abap.blogspot.com/2008/06/calculate-tax-of-purchase-order-line.html]

[Link2|;

[link3|;

[link4|http://www.sapnet.ru/viewtopic.php?t=255]

Former Member
0 Kudos

Dear Aditya,

There is no table that store PO tax amount you have to use function module to achieve that

There are many table that store the tax rate that you created in FV13 (like A363 etc)

but in PO the tax amount not get stored in any table

You can use function module CALCULATE_TAX_ITEM

Also you can refer this link

http://wiki.sdn.sap.com/wiki/display/Snippets/FunctionModuletoCalculateTaxinPurchaseorderbasedoncondition+type

Former Member
0 Kudos

Steps to be followed.

1.Open PO in EKPO  And get net amount and  get tax code MWSKZ .

2. Execute function module CALCULATE_TAX_FROM_NET_AMOUNT.

3.Pass Company code , Tax code , currency and amount in I_BUKRS / I_MWSKZ / I_WAERS / I_WRBTR respectively.

4. You will get the data in T_MWDAT.

Regards

Pankaj Jindal