Cash Management Bank Statement Report
Bank account balances and transaction information for specific bank statements — opening and closing balance, the statement lines, and their reconciliation status.
Sample build of the Cash Management Bank Statement Report — reconciled, and rendered tool-neutral so it runs in Power BI, ThoughtSpot, or Tableau.
| Statement Date | Bank Account | Opening | Lines | Closing | Reconciled |
|---|---|---|---|---|---|
| 2026-04-30 | 1000-2100-000 | Sample | Sample | Sample | Sample |
| 2026-03-31 | 1000-5400-000 | — | — | — | — |
| 2026-02-28 | 1000-1410-000 | Sample | Sample | Sample | Sample |
| 2026-01-31 | 2000-2100-000 | — | — | — | — |
| 2025-12-31 | 1000-6300-000 | Sample | Sample | Sample | Sample |
| 2026-04-30 | 1000-2100-000 | Sample | Sample | Sample | Sample |
The report reads the statement lines per statement with opening and closing balances.
42 statement lines remain unreconciled — the bank balance won't tie to the books until they clear.
Tune the auto-match rules or post the missing system transactions; unmatched statement lines are why a bank rec won't close.
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
- CE_STATEMENT_HEADERS_ALL
- CE_STATEMENT_LINES
- CE_BANK_ACCOUNTS
- CE_BANK_ACCT_BALANCES
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 |
|---|---|---|
| CE_STATEMENT_LINES | dimension | dimension |
| CE_BANK_ACCOUNTS | dimension | dimension |
| CE_BANK_ACCT_BALANCES | 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 |
|---|---|---|
| CE_STATEMENT_HEADERS_ALL | Setup / configuration table — joined for reference, not exposed for analytics | |
| CE_STATEMENT_LINES | 23 | 3 |
| CE_BANK_ACCOUNTS | 9 | 12 |
| CE_BANK_ACCT_BALANCES | Setup / configuration table — joined for reference, not exposed for analytics | |
Customization note Ships per statement; treasury usually wants a multi-account daily position with prior-day and intraday balances on one screen. Irvine rebuilds these on your data.