Application Development and Automation 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: 
Read only

Tax Jurisdiction Code when Zip Code is having multiple Cities

Former Member
0 Likes
1,543

Hey SAP Gurus,

We are using ECC 6.0 and Vertex for Tax Determination.

We are unable to get correct Tax Jurisdiction Code when Zip Code is having multiple Cities.

Any help on this topic is appreciated,

Thanks

Madhu.

Hey SAP Gurus,

We are using ECC 6.0 and Vertex for Tax Determination.

We are unable to get correct Tax Jurisdiction Code when Zip Code is having multiple Cities.

Any help on this topic is appreciated,

Thanks

Madhu.

3 REPLIES 3
Read only

Former Member
0 Likes
717

Use Table A003

T007A

Regards

Ajit

Read only

former_member182371
Active Contributor
0 Likes
717

Hi,

check this blog:

Vertex Q Series

it seems to describe a similar situation.

Best regards.

Read only

GauthamV
Active Contributor
0 Likes
717

Use class cl_tax_jurisdiction_code.


    CREATE OBJECT lo_jurisdiction
      EXPORTING
        im_kalsm = l_kalsm
      EXCEPTIONS
        no_ttxd  = 1
        OTHERS   = 2.
    IF sy-subrc ne 0.
      EXIT.
    ENDIF.

    CALL METHOD lo_jurisdiction->set_txjcd
      EXPORTING
        im_txjcd         = i_txjcd
        im_location_data = l_location_data
        im_no_dialog     = 'X'.


    IF sy-subrc = 0.

      CALL METHOD lo_jurisdiction->get_txjcd
        IMPORTING
          ex_txjcd         = e_txjcd
          ex_location_data = ls_address_out
          ex_text1         = l_text.

    ENDIF.