User Tools

Site Tools


dynamiczip:troubleshooting:issues:zero_rate_county_overrides

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
dynamiczip:troubleshooting:issues:zero_rate_county_overrides [2019/05/22 12:18] – created chuckdynamiczip:troubleshooting:issues:zero_rate_county_overrides [2019/05/22 12:36] (current) chuck
Line 1: Line 1:
 ====== Zero Rate County Overrides ====== ====== Zero Rate County Overrides ======
-This issue affects [[dynamiczip:install:mods:release:build73:build73|DynamicZip Build 73]] and prior. This issue is limited to zero rate county overrides.+This issue affects [[dynamiczip:install:mods:release:build73:build73|DynamicZip Build 73]] and prior.
  
-The [[dynamiczip:glossary:zipsales_database|ZIPsales Database]] uses overrides when the normal city, county or state tax rate does not apply to a particular jurisdiction. +The [[dynamiczip:glossary:zipsales_database|ZIPsales Database]] uses overrides when the normal city, county or state tax rate does not apply to a particular jurisdiction.  This issue is limited to zero rate county overrides.
  
 +When a county tax rate is reduced to zero for one or more cities, DynamicZip build 73 and prior failed to zero out or remove the standard county tax rate. This results in overstating the tax schedules' rate.
  
 +Counties where this issue is known to exist include:
 +  * Las Angeles
 +  * Santa Cruz
  
 +===== Workaround =====
 +Build 73 and prior used the county name followed by /T: as the description for county override tax details.
 +
 +This query returns the details with a city override of LA county tax:
 +<code>
 +select * from TX00201 where TXDTLDSC like 'LOS ANGELES/T:%'
 +</code>
 +
 +This statement will update the tax rate for the details returned by the above query to zero:
 +<code>
 +update TX00201 set TXDTLPCT = 0 where TXDTLDSC like 'LOS ANGELES/T:%'
 +</code>
 +
 +The [[dynamiczip:glossary:import_status|Import Status]] of these details can be set to __Update Schedule Only__ to prevent future imports from reverting the tax rate to it's normal value with the following SQL statement:
 +<code>
 +update sup set KDImportStatus = 2
 +from DZ00400 as sup
 +inner join TX00201 as dtl on dtl.TAXDTLID = sup.TAXDTLID
 +where TXDTLDSC like 'LOS ANGELES/T:%'
 +</code>
  
dynamiczip/troubleshooting/issues/zero_rate_county_overrides.1558527525.txt.gz · Last modified: 2019/05/22 12:18 by chuck

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki