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

Former Member
0 Likes
420

Hi All,

TAX_TXJCD_DETERMINE_TABLE - FM returns a table of all tax codes for a given city/zip. This is exactly what I needed!

I have two reqs 1.need check if any given county/city has more than one Tax Jurisdiction code 2. display them if it more than one.

Could any body give me sample code for this ? your help in this regard is greatly appreciated.

thanks

Hi All,

TAX_TXJCD_DETERMINE_TABLE - FM returns a table of all tax codes for a given city/zip. This is exactly what I needed!

I have two reqs 1.need check if any given county/city has more than one Tax Jurisdiction code 2. display them if it more than one.

Could any body give me sample code for this ? your help in this regard is greatly appreciated.

thanks

1 REPLY 1
Read only

former_member156446
Active Contributor
0 Likes
378

>

> TAX_TXJCD_DETERMINE_TABLE - FM returns a table of all tax codes for a given city/zip. This is exactly what I needed!

use describe table <table_name> line lv_lines.
if lv_lines GT 1.
loop at <table_name> into wa.
write:/ wa-taxj.
endloop.