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: 

table for tax percentage value

Former Member
0 Kudos

Hi All,

can any one let me know what is the table name for tax percentage rate. i want to know the percentage value here frm the db table.

Thank You.

1 REPLY 1

Former Member

Hi,

you may use this function module:


  CALL FUNCTION 'GET_TAX_PERCENTAGE'
    EXPORTING
      aland   = t001-land1
      datab   = it_bkpf-budat
      mwskz   = p_bseg-mwskz
      txjcd   = space
    TABLES
      t_ftaxp = lt_ftaxp.

...where:

  • t001-land1 is the country key

  • it_bkpf-budat is the posting date

  • p_bseg-mwskz is the tax code

  • lt_ftaxp is an internal table with structure FTAXP, which receives all the percentages defined for that tax code.

I hope this helps. Best regards,

Alvaro