Search Results gl_je_headers
Overview
GL_JE_HEADERS is the core journal entry header table in the Oracle E-Business Suite General Ledger (GL) module, owned by the GL schema. It stores one row for every journal entry created, imported, or generated in the application, defining the summarizing attributes of a transaction before its individual accounting distributions are recorded in GL_JE_LINES. The table is central to the entire GL posting lifecycle: drafts entered through the Enter Journals form, entries imported from subledgers via the GL_INTERFACE, recurring journal reversals, encumbrance entries, and SLA-generated journals all ultimately persist a header row here. Within the documented 12.2.2 physical schema, GL_JE_HEADERS contains 89 columns, and its Data Vault classification heuristic identifies it as a hub — meaning it functions as the canonical business entity from which many dependent relationships radiate. In practice, GL_JE_HEADERS anchors a star of downstream references, and any query reconciling subledger activity, period close balances, or audit trails typically begins here.
Key Information Stored
The surrogate primary key is JE_HEADER_ID, defined by the constraint GL_JE_HEADERS_PK. Two unique indexes act as business-key candidates: GL_JE_HEADERS_U1 on JE_HEADER_ID and GL_JE_HEADERS_U2 on NAME and JE_BATCH_ID, the latter enforcing that a journal name must be unique within its batch. Among the most operationally significant columns are LEDGER_ID, which ties the entry to a specific ledger; JE_BATCH_ID, linking the header to its batch in GL_JE_BATCHES; JE_CATEGORY and JE_SOURCE, which classify the entry (for example, Payables or Manual); PERIOD_NAME and STATUS, which determine accounting period and posting state; CURRENCY_CODE and ACTUAL_FLAG, which identify currency and whether the entry is actual, budget, or encumbrance; and the control totals CONTROL_TOTAL, RUNNING_TOTAL_DR, RUNNING_TOTAL_CR, RUNNING_TOTAL_ACCOUNTED_DR, and RUNNING_TOTAL_ACCOUNTED_CR. Reversal tracking is handled through REVERSED_JE_HEADER_ID, ACCRUAL_REV_JE_HEADER_ID, and ACCRUAL_REV_STATUS, while BALANCED_JE_FLAG, DATE_CREATED, and POSTED_DATE capture balance status, creation, and posting timestamps. Document sequencing fields such as DOC_SEQUENCE_ID and DOC_SEQUENCE_VALUE support statutory numbering.
Common Use Cases and Queries
Typical reporting and diagnostic scenarios include tracing a subledger journal back to its GL entry, identifying unposted or unbalanced journals before period close, and reconciling control totals against the sum of detail lines. A representative query returns journal metadata for a given period and ledger:
SELECT h.je_header_id, h.name, h.period_name, h.status, h.currency_code FROM gl_je_headers h WHERE h.ledger_id = :ledger_id AND h.period_name = :period_name;- Joining to batches:
SELECT b.name batch, h.name, h.status FROM gl_je_headers h, gl_je_batches b WHERE h.je_batch_id = b.je_batch_id AND h.status = 'U'; - Balance validation: comparing h.control_total with SUM(lines.accounted_dr) - SUM(lines.accounted_cr) from GL_JE_LINES.
- Reversal identification:
SELECT je_header_id, name FROM gl_je_headers WHERE reversed_je_header_id IS NOT NULL;
These patterns underpin period-close dashboards, journal audit reports, and interface-to-GL reconciliation utilities.
Related Objects
GL_JE_HEADERS is heavily referenced across modules. Its most significant relationships are documented through foreign keys and dependent tables:
- GL_JE_LINES (JE_HEADER_ID) — the detail distributions for every header.
- GL_JE_BATCHES (JE_BATCH_ID) — the controlling batch grouping and posting unit.
- GL_LEDGERS (LEDGER_ID) — the owning ledger and accounting conventions.
- GL_JE_HEADERS self-references via PARENT_JE_HEADER_ID, REVERSED_JE_HEADER_ID, and ACCRUAL_REV_JE_HEADER_ID, supporting hierarchical and reversal journals.
- GL_INTERFACE (JE_HEADER_ID) — journal import staging before validation and posting.
- AP_CHECK_TRANSMISSIONS and AP_INVOICE_TRANSMISSIONS (JE_HEADER_ID) — Payables integration.
- FA_DEPRN_DETAIL and FA_DEFERRED_DEPRN (JE_HEADER_ID) — Fixed Assets depreciation journals.
- CE_STATEMENT_RECONCILS_ALL and CE_ARCH_RECONCILIATIONS_ALL (JE_HEADER_ID) — Cash Management reconciliation entries.
- GL_BC_PACKETS and GL_AUTO_ALLOC_REV_BATCHES — budgetary control and allocation reversal processing.
Together these objects form the journal entry graph that the GL period-close and reconciliation processes depend upon.
-
Table: GL_JE_HEADERS
12.1.1
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_JE_HEADERS, object_name:GL_JE_HEADERS, status:VALID, product: GL - General Ledger , description: Journal entry headers , implementation_dba_data: GL.GL_JE_HEADERS ,
-
Table: GL_JE_HEADERS
12.2.2
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_JE_HEADERS, object_name:GL_JE_HEADERS, status:VALID, product: GL - General Ledger , description: Journal entry headers , implementation_dba_data: GL.GL_JE_HEADERS ,
-
Table: GL_ARCHIVE_HEADERS
12.2.2
product: GL - General Ledger , description: Archive journal headers , implementation_dba_data: Not implemented in this database ,
-
Table: GL_IMPORT_REFERENCES
12.1.1
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_IMPORT_REFERENCES, object_name:GL_IMPORT_REFERENCES, status:VALID, product: GL - General Ledger , description: Cross-references between subledgers and Oracle General Ledger's journal entries , implementation_dba_data: GL.GL_IMPORT_REFERENCES ,
-
Table: GL_IMPORT_REFERENCES
12.2.2
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_IMPORT_REFERENCES, object_name:GL_IMPORT_REFERENCES, status:VALID, product: GL - General Ledger , description: Cross-references between subledgers and Oracle General Ledger's journal entries , implementation_dba_data: GL.GL_IMPORT_REFERENCES ,
-
Table: GL_ARCHIVE_HEADERS
12.1.1
product: GL - General Ledger , description: Archive journal headers , implementation_dba_data: Not implemented in this database ,
-
View: GLFV_ENCUMB_JOURNAL_ENTRIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GLFV_ENCUMB_JOURNAL_ENTRIES, object_name:GLFV_ENCUMB_JOURNAL_ENTRIES, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GLFV_ENCUMB_JOURNAL_ENTRIES ,
-
View: GLFV_ENCUMB_JOURNAL_ENTRIES
12.2.2
product: GL - General Ledger , implementation_dba_data: Not implemented in this database ,
-
View: GLFV_ACTUAL_JOURNAL_ENTRIES
12.2.2
product: GL - General Ledger , implementation_dba_data: Not implemented in this database ,
-
View: GLFV_ACTUAL_JOURNAL_ENTRIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GLFV_ACTUAL_JOURNAL_ENTRIES, object_name:GLFV_ACTUAL_JOURNAL_ENTRIES, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GLFV_ACTUAL_JOURNAL_ENTRIES ,
-
View: GLFV_JOURNAL_ENTRIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GLFV_JOURNAL_ENTRIES, object_name:GLFV_JOURNAL_ENTRIES, status:VALID, product: GL - General Ledger , description: General Ledger journal entries are groups of related journal lines that record debit and credit amounts to General Ledger accounts. , implementation_dba_data: APPS.GLFV_JOURNAL_ENTRIES ,
-
View: GLFV_JOURNAL_ENTRIES
12.2.2
product: GL - General Ledger , description: General Ledger journal entries are groups of related journal lines that record debit and credit amounts to General Ledger accounts. , implementation_dba_data: Not implemented in this database ,
-
View: GLFV_BUDGET_JOURNAL_ENTRIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GLFV_BUDGET_JOURNAL_ENTRIES, object_name:GLFV_BUDGET_JOURNAL_ENTRIES, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GLFV_BUDGET_JOURNAL_ENTRIES ,
-
View: GLFV_BUDGET_JOURNAL_ENTRIES
12.2.2
product: GL - General Ledger , implementation_dba_data: Not implemented in this database ,
-
Table: GL_JE_LINES_RECON
12.2.2
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_JE_LINES_RECON, object_name:GL_JE_LINES_RECON, status:VALID, product: GL - General Ledger , implementation_dba_data: GL.GL_JE_LINES_RECON ,
-
Table: GL_JE_SEGVALS_UPGRADE
12.2.2
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_JE_SEGVALS_UPGRADE, object_name:GL_JE_SEGVALS_UPGRADE, status:VALID, product: GL - General Ledger , implementation_dba_data: GL.GL_JE_SEGVALS_UPGRADE ,
-
Table: GL_UPGRADE_STATUS
12.1.1
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_UPGRADE_STATUS, object_name:GL_UPGRADE_STATUS, status:VALID, product: GL - General Ledger , implementation_dba_data: GL.GL_UPGRADE_STATUS ,
-
Table: GL_UPGRADE_STATUS
12.2.2
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_UPGRADE_STATUS, object_name:GL_UPGRADE_STATUS, status:VALID, product: GL - General Ledger , implementation_dba_data: GL.GL_UPGRADE_STATUS ,
-
Table: GL_JE_SEGVALS_UPGRADE
12.1.1
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_JE_SEGVALS_UPGRADE, object_name:GL_JE_SEGVALS_UPGRADE, status:VALID, product: GL - General Ledger , implementation_dba_data: GL.GL_JE_SEGVALS_UPGRADE ,
-
Table: GL_JE_LINES_RECON
12.1.1
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_JE_LINES_RECON, object_name:GL_JE_LINES_RECON, status:VALID, product: GL - General Ledger , implementation_dba_data: GL.GL_JE_LINES_RECON ,
-
Table: GL_JOURNAL_REPORTS_ITF
12.2.2
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_JOURNAL_REPORTS_ITF, object_name:GL_JOURNAL_REPORTS_ITF, status:VALID, product: GL - General Ledger , description: Interface table for RXi Oracle General Ledger journal reports. , implementation_dba_data: GL.GL_JOURNAL_REPORTS_ITF ,
-
Table: GL_JE_SEGMENT_VALUES
12.1.1
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_JE_SEGMENT_VALUES, object_name:GL_JE_SEGMENT_VALUES, status:VALID, product: GL - General Ledger , description: Journal entry balancing and management segment values. , implementation_dba_data: GL.GL_JE_SEGMENT_VALUES ,
-
Table: GL_JE_SEGMENT_VALUES
12.2.2
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_JE_SEGMENT_VALUES, object_name:GL_JE_SEGMENT_VALUES, status:VALID, product: GL - General Ledger , description: Journal entry balancing and management segment values. , implementation_dba_data: GL.GL_JE_SEGMENT_VALUES ,
-
Table: GL_AUTO_ALLOC_REV_BATCHES
12.1.1
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_AUTO_ALLOC_REV_BATCHES, object_name:GL_AUTO_ALLOC_REV_BATCHES, status:VALID, product: GL - General Ledger , description: Reverse journal batches generated by AutoAllocation rollback process , implementation_dba_data: GL.GL_AUTO_ALLOC_REV_BATCHES ,
-
Table: GL_AUTO_ALLOC_REV_BATCHES
12.2.2
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_AUTO_ALLOC_REV_BATCHES, object_name:GL_AUTO_ALLOC_REV_BATCHES, status:VALID, product: GL - General Ledger , description: Reverse journal batches generated by AutoAllocation rollback process , implementation_dba_data: GL.GL_AUTO_ALLOC_REV_BATCHES ,
-
Table: GL_INTERFACE_HISTORY
12.2.2
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_INTERFACE_HISTORY, object_name:GL_INTERFACE_HISTORY, status:VALID, product: GL - General Ledger , description: Imported journal entry batches , implementation_dba_data: GL.GL_INTERFACE_HISTORY ,
-
Table: GL_INTERFACE_HISTORY
12.1.1
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_INTERFACE_HISTORY, object_name:GL_INTERFACE_HISTORY, status:VALID, product: GL - General Ledger , description: Imported journal entry batches , implementation_dba_data: GL.GL_INTERFACE_HISTORY ,
-
Table: GL_JOURNAL_REPORTS_ITF
12.1.1
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_JOURNAL_REPORTS_ITF, object_name:GL_JOURNAL_REPORTS_ITF, status:VALID, product: GL - General Ledger , description: Interface table for RXi Oracle General Ledger journal reports. , implementation_dba_data: GL.GL_JOURNAL_REPORTS_ITF ,
-
Table: GL_RECURRING_HEADERS
12.2.2
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_RECURRING_HEADERS, object_name:GL_RECURRING_HEADERS, status:VALID, product: GL - General Ledger , description: Recurring journal entry and budget formula headers , implementation_dba_data: GL.GL_RECURRING_HEADERS ,
-
Table: GL_INTERFACE
12.1.1
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_INTERFACE, object_name:GL_INTERFACE, status:VALID, product: GL - General Ledger , description: Import journal entry batches , implementation_dba_data: GL.GL_INTERFACE ,
-
View: GL_JE_HEADERS_LOV_V
12.1.1
product: GL - General Ledger , description: 10SC ONLY , implementation_dba_data: Not implemented in this database ,
-
Table: GL_INTERFACE
12.2.2
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_INTERFACE, object_name:GL_INTERFACE, status:VALID, product: GL - General Ledger , description: Import journal entry batches , implementation_dba_data: GL.GL_INTERFACE ,
-
Table: GL_BC_PACKETS
12.2.2
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_BC_PACKETS, object_name:GL_BC_PACKETS, status:VALID, product: GL - General Ledger , description: Budgetary control queue table , implementation_dba_data: GL.GL_BC_PACKETS ,
-
View: GL_JE_HEADERS_LOV_V
12.2.2
product: GL - General Ledger , description: 10SC ONLY , implementation_dba_data: Not implemented in this database ,
-
Table: GL_BC_PACKETS
12.1.1
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_BC_PACKETS, object_name:GL_BC_PACKETS, status:VALID, product: GL - General Ledger , description: Budgetary control queue table , implementation_dba_data: GL.GL_BC_PACKETS ,
-
Table: GL_RECURRING_HEADERS
12.1.1
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_RECURRING_HEADERS, object_name:GL_RECURRING_HEADERS, status:VALID, product: GL - General Ledger , description: Recurring journal entry and budget formula headers , implementation_dba_data: GL.GL_RECURRING_HEADERS ,
-
View: GLBV_JOURNAL_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GLBV_JOURNAL_LINES, object_name:GLBV_JOURNAL_LINES, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GLBV_JOURNAL_LINES ,
-
Table: GL_BC_PACKETS_HISTS
12.2.2
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_BC_PACKETS_HISTS, object_name:GL_BC_PACKETS_HISTS, status:VALID, product: GL - General Ledger , description: GL_BC_PACKETS_HISTS is Oracle General Ledger's history table for the Budgetary Control feature. This table stores the budgetary control packets that are deleted from table GL_BC_PACKETS. , implementation_dba_data: GL.GL_BC_PACKETS_HISTS ,
-
Table: GL_BC_PACKETS_HISTS
12.1.1
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_BC_PACKETS_HISTS, object_name:GL_BC_PACKETS_HISTS, status:VALID, product: GL - General Ledger , description: GL_BC_PACKETS_HISTS is Oracle General Ledger's history table for the Budgetary Control feature. This table stores the budgetary control packets that are deleted from table GL_BC_PACKETS. , implementation_dba_data: GL.GL_BC_PACKETS_HISTS ,
-
View: GLBV_JOURNAL_LINES
12.2.2
product: GL - General Ledger , implementation_dba_data: Not implemented in this database ,
-
Table: GL_ENCUMBRANCE_TYPES
12.1.1
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_ENCUMBRANCE_TYPES, object_name:GL_ENCUMBRANCE_TYPES, status:VALID, product: GL - General Ledger , description: Encumbrance type definitions , implementation_dba_data: GL.GL_ENCUMBRANCE_TYPES ,
-
Table: GL_ENCUMBRANCE_TYPES
12.2.2
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_ENCUMBRANCE_TYPES, object_name:GL_ENCUMBRANCE_TYPES, status:VALID, product: GL - General Ledger , description: Encumbrance type definitions , implementation_dba_data: GL.GL_ENCUMBRANCE_TYPES ,
-
View: GL_PERIOD_STATUSES_REV_BUD_V
12.1.1
product: GL - General Ledger , description: 10SC ONLY , implementation_dba_data: Not implemented in this database ,
-
View: GL_PERIOD_STATUSES_REV_BUD_V
12.2.2
product: GL - General Ledger , description: 10SC ONLY , implementation_dba_data: Not implemented in this database ,
-
View: GLFV_JOURNAL_LINES
12.2.2
product: GL - General Ledger , description: General Ledger journal lines record debit or credit amounts to General Ledger accounts, or use formulas to calculate journal amounts for General Ledger accounts. , implementation_dba_data: Not implemented in this database ,
-
View: GLFV_JOURNAL_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GLFV_JOURNAL_LINES, object_name:GLFV_JOURNAL_LINES, status:VALID, product: GL - General Ledger , description: General Ledger journal lines record debit or credit amounts to General Ledger accounts, or use formulas to calculate journal amounts for General Ledger accounts. , implementation_dba_data: APPS.GLFV_JOURNAL_LINES ,
-
View: GLBV_JOURNAL_BATCHES
12.2.2
product: GL - General Ledger , implementation_dba_data: Not implemented in this database ,
-
View: GLBV_JOURNAL_BATCHES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GLBV_JOURNAL_BATCHES, object_name:GLBV_JOURNAL_BATCHES, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GLBV_JOURNAL_BATCHES ,
-
View: GLBV_ENCUMB_JOURNAL_BATCHES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GLBV_ENCUMB_JOURNAL_BATCHES, object_name:GLBV_ENCUMB_JOURNAL_BATCHES, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GLBV_ENCUMB_JOURNAL_BATCHES ,
-
View: GLBV_ENCUMB_JOURNAL_ENTRIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GLBV_ENCUMB_JOURNAL_ENTRIES, object_name:GLBV_ENCUMB_JOURNAL_ENTRIES, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GLBV_ENCUMB_JOURNAL_ENTRIES ,