Payables Invoice Audit Listing
Lists invoices for review and audit based on a specified amount for a given supplier and range of invoice creation dates.
Sample build of the Payables Invoice Audit Listing — reconciled, and rendered tool-neutral so it runs in Power BI, ThoughtSpot, or Tableau.
| Supplier | Invoice | Created | Amount | Entered By |
|---|---|---|---|---|
| Acme Industrial | Sample | Sample | $1,240,500.00 | Sample |
| Northwind Trading | — | — | $842,150.75 | — |
| Globex Holdings | Sample | Sample | $96,400.00 | Sample |
| Initech LLC | — | — | $1,005,233.10 | — |
| Umbrella Corp | Sample | Sample | $58,720.40 | Sample |
| Acme Industrial | Sample | Sample | $1,240,500.00 | Sample |
The report lists invoices above a specified amount for a supplier and date range, for audit.
Nine invoices share supplier, amount, and date with another — the classic duplicate-invoice signature.
Confirm the suspected duplicates before payment; same supplier, amount, and date is the most common duplicate-payment pattern.
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 |
|---|---|---|
| POZ_SUPPLIERS | dimension | dimension |
| AP_INVOICE_LINES_ALL | 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 |
|---|---|---|
| AP_INVOICES_ALL | 63 | 15 |
| POZ_SUPPLIERS | 145 | 75 |
| AP_INVOICE_LINES_ALL | 58 | 19 |
Customization note Commonly extended with duplicate-invoice detection and threshold rules the seeded listing can't express. Irvine rebuilds these on your data.