cancel
Showing results for 
Search instead for 
Did you mean: 

VAT output tax report-Customised _Tables and fields link

former_member565100
Active Participant
0 Kudos

Hi

I have to create a customised report for the VAT out put tax ..Please advice me which tables should be looked in to ..to get the following fields

ICustomer,Invoice number,Posting date,tax code,Tax base amount in document and local currency,tax amount in document and local currency,exchange rate.

Please advice.Is it possible to get this done with sp query ..if so please advice how to go about it.

Accepted Solutions (0)

Answers (2)

Answers (2)

dominic_holdstock
Active Contributor
0 Kudos

Hi,

There is no need to create a programm for this.

Use S_ALR_87012357 - Advance Return for Tax on Sales/Purchases .

You can adjust the layouts in this report to include thoose fields.

Kind regards

former_member183879
Active Contributor
0 Kudos

Hi,

You can get all these details from the tables VBRK, KONV etc.

From VBRK, the sold to party (KUNAG) and payer (KUNRG) are there. For finding out the tax values, you should know what is the condition type you are using for tax. Assume that MWST is being used.

Now find out VBRK-KNUMV value. Give this value as input in KONV table for the field KNUMV.

Also pass KONV-KSCHL = MWST (tax condition type).

Now you can get the values of MWST from fields KONV-KWERT (Value), KONV-KBETR (Rate), KONV-WAERS(Currency key) KONV-KKURS (Exchange rate) KONV-MWSKZ (Tax code) KONV-KUNNR (Customer) etc.

Just explore VBRK and KONV, you will get all your details.

Hope this helps