Sales Tax Report
US sales tax by jurisdiction and rate for Receivables transactions — the basis for state and local sales-tax returns.
Run note · Data latency Several tax reports read the Tax Reporting Ledger extract rather than live transaction tables — run the extract first or the report returns stale or empty results.
Sample build of the Sales Tax Report — reconciled, and rendered tool-neutral so it runs in Power BI, ThoughtSpot, or Tableau.
| State | Jurisdiction | Tax Rate | Taxable | Tax |
|---|---|---|---|---|
| Sample | Sample | Sample | Sample | Sample |
| — | — | — | — | — |
| Sample | Sample | Sample | Sample | Sample |
| — | — | — | — | — |
| Sample | Sample | Sample | Sample | Sample |
| Sample | Sample | Sample | Sample | Sample |
The report summarizes sales tax by US jurisdiction and rate.
Taxable sales in three states have no registered nexus setup — either collecting where you shouldn't or owing where you don't collect.
Confirm nexus in those states; getting nexus wrong is the most expensive sales-tax mistake.
This is the report's BI Publisher data model — the SQL data set BI Publisher runs against Oracle tables to produce the output. The same SQL becomes a dbt model in your warehouse, so one definition drives both the formatted report and the analytics layer.
Data sources
- ZX_LINES
- RA_CUSTOMER_TRX_ALL
- ZX_RATES_B
The data-warehouse model — one fact surrounded by conformed dimensions (what you slice by) and measures (what you aggregate), expressed as dbt so it migrates with you. Grain: one row per source transaction.
| Element | Type | Definition |
|---|---|---|
| RA_CUSTOMER_TRX_ALL | dimension | dimension |
| ZX_RATES_B | dimension | dimension |
| Amount | measure | measure |
Every source object behind this report. Each linked table has its own page with full column descriptions, drawn from the Oracle BICC lineage and articulated for practitioners.
| Table | Reporting columns | Subject areas |
|---|---|---|
| ZX_LINES | Setup / configuration table — joined for reference, not exposed for analytics | |
| RA_CUSTOMER_TRX_ALL | 58 | 16 |
| ZX_RATES_B | Setup / configuration table — joined for reference, not exposed for analytics | |
Customization note Rebuilt by jurisdiction with nexus flags so multi-state returns can be prepared from one model. Irvine rebuilds these on your data.