Search Results gl_je_headers_u2




Overview

GL.GL_JE_HEADERS is the core header table of the Oracle General Ledger journal entry model in Oracle E-Business Suite 12.1.1 and 12.2.2. Each row represents a single journal entry, which is the parent of one or more journal lines stored in GL_JE_LINES. There is a one-to-many relationship between journal entry batches (GL_JE_BATCHES) and journal entries, so every row carries a JE_BATCH_ID that links it to its batch. Functionally, the table corresponds to the Journals window of the Enter Journals form, and it is the authoritative source for journal status, posting dates, currency conversion attributes, accrual reversal configuration, and intercompany balancing metadata.

From a Data Vault modeling perspective, the ETRM relationship classification of this object is hub. It is best treated as the business-key hub for the journal entry entity, since it carries the natural business key candidates and is referenced by a large population of dependent tables.

Key Information Stored

The table contains 89 documented columns. The most operationally significant are:

Common Use Cases and Queries

Typical uses include journal posting status reporting, period-close balancing checks, reversal tracking, and reconciliation of subledger transfers. A query to list unposted journals for a ledger and period:

SELECT h.je_header_id, h.name, h.period_name, h.status, h.posted_date
FROM   gl_je_headers h
WHERE  h.ledger_id = :ledger_id
AND    h.period_name = :period_name
AND    h.status = 'U';

To find entries created from a specific source or category, filter on JE_SOURCE and JE_CATEGORY. To trace reversal pairs, join REVERSED_JE_HEADER_ID back to JE_HEADER_ID. To identify entries whose converted amounts were manually overridden, filter CONVERSION_FLAG = 'N', which is only possible when the profile MULTIPLE_RATES_PER_JE is 'Yes'. Joining to GL_JE_LINES on JE_HEADER_ID produces the detail balances used for trial balance extracts.

Related Objects