Import AutoInvoice Execution Report
Reports the outcome of the AutoInvoice import that brings transactions from external systems into Receivables, listing successful and rejected records by transaction type, customer, transaction number, and date.
Sample build of the Import AutoInvoice Execution Report — reconciled, and rendered tool-neutral so it runs in Power BI, ThoughtSpot, or Tableau.
| Batch | Lines Imported | Lines Rejected | Amount | Error Reason |
|---|---|---|---|---|
| Sample | Sample | Sample | $1,240,500.00 | Standard |
| — | — | — | $842,150.75 | Corporate |
| Sample | Sample | Sample | $96,400.00 | Standard |
| — | — | — | $1,005,233.10 | Default |
| Sample | Sample | Sample | $58,720.40 | Standard |
| Sample | Sample | Sample | $1,240,500.00 | Standard |
The report reports the AutoInvoice run — lines imported versus rejected from external systems.
240 lines were rejected, holding $380K of revenue in the interface, not yet invoiced or recognized.
Fix the interface errors — usually missing customer, item, or tax setup; a rejected AutoInvoice line is a sale that never became an invoice.
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
- RA_INTERFACE_LINES_ALL
- RA_INTERFACE_ERRORS_ALL
- RA_CUSTOMER_TRX_ALL
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_INTERFACE_ERRORS_ALL | dimension | dimension |
| RA_CUSTOMER_TRX_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 |
|---|---|---|
| RA_INTERFACE_LINES_ALL | Setup / configuration table — joined for reference, not exposed for analytics | |
| RA_INTERFACE_ERRORS_ALL | Setup / configuration table — joined for reference, not exposed for analytics | |
| RA_CUSTOMER_TRX_ALL | 58 | 16 |
Customization note The rejection listing is hard to action; the common build groups errors by reason and feeds a correction queue rather than a flat log. Irvine rebuilds these on your data.