Customer Account Status Report
Lists each customer's open items and total balance due based on account status, in the specified ledger currency.
Sample build of the Customer Account Status Report — reconciled, and rendered tool-neutral so it runs in Power BI, ThoughtSpot, or Tableau.
| Customer | Account Status | Open Items | Balance Due | Currency |
|---|---|---|---|---|
| Acme Industrial | Open | Sample | $1,240,500.00 | USD |
| Northwind Trading | Posted | — | $842,150.75 | USD |
| Globex Holdings | Validated | Sample | $96,400.00 | USD |
| Initech LLC | Open | — | $1,005,233.10 | USD |
| Umbrella Corp | Paid | Sample | $58,720.40 | USD |
| Acme Industrial | Open | Sample | $1,240,500.00 | USD |
The report lists each customer's open items and total balance due by account status.
32 customers are on credit hold yet still carry shippable orders elsewhere — the hold isn't enforced end to end.
Confirm credit-hold enforcement flows to order management; a hold AR sees but shipping doesn't is a credit-risk leak.
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 |
|---|---|---|
| HZ_CUST_ACCOUNTS | dimension | dimension |
| HZ_PARTIES | dimension | dimension |
| RA_CUSTOMER_TRX_ALL | dimension | dimension |
| Balance 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 |
|---|---|---|
| AR_PAYMENT_SCHEDULES_ALL | 32 | 6 |
| HZ_CUST_ACCOUNTS | 14 | 43 |
| HZ_PARTIES | 81 | 144 |
| RA_CUSTOMER_TRX_ALL | 58 | 16 |
Customization note Commonly extended with credit-limit utilization and rolling DSO so collections can prioritize, not just read a list. Irvine rebuilds these on your data.