cancel
Showing results for 
Search instead for 
Did you mean: 

SAPscript Vat problem

Former Member
0 Kudos

Hi,

I'm new to Sapscripts, and we are currently doing a VAT implementation at my company. Whenever we print out a Tax Invoice, the vat amount prints with the description "Output Tax". Is there any way that I can change this to my own description...e.g "Vat @ 10%"?

Thanks and regards.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

I think there are other fields in the structure that are more meaningful,

Check out the layout set (SE71). The MAIN window usually has the tax lines. Find the structure used for the tax value.

Check the data dictionary (SE11) and examine the other fields in the structure.

There should be a better description field. You can modify the SAPscript to use the more descriptive field. For example, structure KOMVD is used for some tax lines. Field KOMVD-VTEXT can be used to provide a better description of the tax type.

Former Member
0 Kudos

Thank you,

I have checked the script and i see the field there:

SUM_LINEIF &KOMVD-VTEXT(15)& = 'Total '

&KOMVD-VTEXT(15)& &KOMVD-KWERT(I13)&ELSE

&KOMVD-VTEXT(15)& &KOMVD-KWERT(I13)&ENDIF

TAX_LINE

&KOMVD-VTEXT(15)& &KOMVD-KWERT(I13)&

END_VALUES* ,,Final amount,,&KOMK-FKWRT(I13)&

and so on......

I believe from what you told me the KOMVD-VTEXT(15) contains the description "Output Tax". Is there anyway i can view/change the contents of this field.?

Thanks.

Answers (1)

Answers (1)

Former Member
0 Kudos

Thank for the help.