Announcements
No record found.
So here is how Tennessee expects to collect sales taxes --> https://help.avalara.com/Frequently_Asked_Questions/Product_and_Service_Taxability_FAQ/How_is_the_Tennessee_Tiered_Tax_applied%3F. Three tiers based on each line item's sale. With thresholds depending on each line item's dollar amount. Has anyone been able to configure these conditional taxes out of the box in BC 365? We are currently on v19.5. Any tips would be appreciated!
To make things more concrete, here is how the tiered taxes would be applied in terms of sample AL code:
if (SalePrice > 1600.00) and (SalePrice < 3200.00) then begin TaxAmountState := SalePrice * 0.07; TaxAmountLocal := 1600 * 0.0225; TaxAmountArticle := (SalePrice - 1600.00) * 0.0275; end else if (SalePrice >= 3200.00) then begin TaxAmountState := SalePrice * 0.07; TaxAmountLocal := 1600 * 0.0225; TaxAmountArticle := 1600 * 0.0275; end else begin TaxAmountState := SalePrice * 0.07; TaxAmountLocal := SalePrice * 0.0225; TaxAmountArticle := 0.00; end;
Based on the lack of response, I can only assume that this can't be configured OOTB. And would presumably require a custom AL extension.
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.
Congratulations to our 2026 Super Stars!
Thanks to all of our 2025 Community Spotlight stars!
These are the community rock stars!
Stay up to date on forum activity by subscribing.
OussamaSabbouh 2,055 Super User 2026 Season 1
YUN ZHU 1,063 Super User 2026 Season 1
Dhiren Nagar 1,014 Super User 2026 Season 1