General Ledger Account Details Report
Provides journal information to trace each transaction back to its original source, printing a separate page per balancing segment with the account affected, line amount, and beginning and ending balances.
Run note · BIP run High-volume GL extracts can exceed BI Publisher's online output limit and time out. Run it as a scheduled process (ESS) with output bursted to file or email rather than online preview, and bound it by ledger and period.
Sample build of the General Ledger Account Details Report — reconciled, and rendered tool-neutral so it runs in Power BI, ThoughtSpot, or Tableau.
| Date | Journal | Source | Description | Debit | Credit | Balance |
|---|---|---|---|---|---|---|
| 01-JAN-26 | — | — | Opening balance | 8,200 | ||
| 05-JAN-26 | JE-10231 | Payables | Invoice INV-88231 | 12,400 | 20,600 | |
| 18-JAN-26 | JE-10455 | Manual | Reclass to project | 3,000 | 17,600 | |
| 22-JAN-26 | JE-10502 | Payables | Invoice INV-88455 | 7,850 | 25,450 | |
| Period movement | 20,250 | 3,000 | 25,450 |
The report prints journal detail per account so each line traces to its source.
A set of lines on the manual journal source carry no description or reference — they can't be traced back to a document.
Require a description and reference on manual journals; a line you can't trace is the one auditors ask about first.
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
- GL_JE_LINES
- GL_JE_HEADERS
- GL_CODE_COMBINATIONS
- GL_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 |
|---|---|---|
| GL_JE_HEADERS | dimension | dimension |
| GL_CODE_COMBINATIONS | dimension | dimension |
| GL_BALANCES | dimension | dimension |
| Line 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 |
|---|---|---|
| GL_JE_LINES | 26 | 2 |
| GL_JE_HEADERS | 34 | 2 |
| GL_CODE_COMBINATIONS | 7 | 61 |
| GL_BALANCES | Setup / configuration table — joined for reference, not exposed for analytics | |
Customization note Ships as a fixed PDF ordered by account segment; controllers usually rebuild it with drill-through from balance to journal line and a pivot by cost center or management hierarchy. Irvine rebuilds these on your data.