2009 Apr 26 5:13 AM
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
2009 Apr 26 6:46 AM
>
> 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.
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |