Receivables Aging Report
The Receivables Aging Report buckets open customer balances by age so collections can prioritize outreach and finance can assess credit risk and DSO. It reads open AR installments behind the GL receivables balance.
The question it answers
How much is owed, how overdue is it, and which customers concentrate the credit risk?
Sample build of the Receivables Aging Report — reconciled, and rendered tool-neutral so it runs in Power BI, ThoughtSpot, or Tableau.
| Customer | Current | 1-30 | 31-60 | 61-90 | 90+ | Total Due |
|---|---|---|---|---|---|---|
| Acme Industrial | Sample | Sample | Sample | Sample | Sample | $1,240,500.00 |
| Northwind Trading | — | — | — | — | — | $842,150.75 |
| Globex Holdings | Sample | Sample | Sample | Sample | Sample | $96,400.00 |
| Initech LLC | — | — | — | — | — | $1,005,233.10 |
| Umbrella Corp | Sample | Sample | Sample | Sample | Sample | $58,720.40 |
| Acme Industrial | Sample | Sample | Sample | Sample | Sample | $1,240,500.00 |
Each row is a customer's open balance split by age. Current is collectible in the normal cycle; the 90+ bucket drives the bad-debt allowance and DSO.
$1.2M in 90+ days and DSO at 52 days — above target, concentrated in two customers whose balances grew for three consecutive periods.
Traced to AR_PAYMENT_SCHEDULES_ALL: both customers have disputed transactions blocking payment. Route to collections, confirm dispute status, and reassess the allowance.
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
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 |
|---|---|---|
| AR_PAYMENT_SCHEDULES_ALL | dimension | dimension |
| HZ_PARTIES | dimension | dimension |
| Total Due | 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 |
|---|---|---|
| RA_CUSTOMER_TRX_ALL | 58 | 16 |
| AR_PAYMENT_SCHEDULES_ALL | 32 | 6 |
| HZ_PARTIES | 81 | 144 |