2011 Oct 03 9:01 PM
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.
2011 Oct 04 8:28 AM
2011 Oct 04 8:59 AM
2011 Oct 04 9:09 AM
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.
| User | Count |
|---|---|
| 6 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |