Search Results gl_je_lines
Overview
GL_JE_LINES is the core line-level detail table of the Oracle General Ledger journal entry model. Owned by the GL schema and valid in both Oracle E-Business Suite 12.1.1 and 12.2.2, it stores the individual debit and credit distribution lines that make up every journal entry created, imported, or generated in the ledger. Each row represents a single line, carrying the entered amounts, the accounted amounts, the accounting flexfield combination, and the reference and tax information associated with that distribution. The table is one of the most heavily accessed objects in the EBS financials footprint, both by concurrent programs that validate and post journals and by the reporting and reconciliation processes that extract balances and subledger detail.
The heuristic Data Vault classification for this object is hub-leaning. This reflects that GL_JE_LINES behaves primarily as a hub-style entity anchored to stable business keys rather than as a mutable descriptive satellite. Its composite primary key, GL_JE_LINES_PK on (JE_HEADER_ID, JE_LINE_NUM), and the unique index GL_JE_LINES_U1 on the same pair, confirm that the journal line identity is stable and declaratively enforced.
Key Information Stored
The documented physical schema lists 94 columns. The most significant are the following:
- JE_HEADER_ID — The parent journal entry identifier. Together with the line number it forms the primary key and links back to GL_JE_HEADERS.
- JE_LINE_NUM — The sequential line number within the journal entry; part of the composite primary key.
- LEDGER_ID — The ledger to which the line belongs, referencing GL_LEDGERS.
- CODE_COMBINATION_ID — The accounting flexfield combination that identifies the distribution account, referencing GL_CODE_COMBINATIONS.
- PERIOD_NAME — The accounting period in which the line is recorded.
- EFFECTIVE_DATE — The accounting date used for period and rate determination.
- STATUS — The line status (for example, unposted or posted), driving posting eligibility.
- ENTERED_DR / ENTERED_CR — The debit and credit amounts in the entered currency.
- ACCOUNTED_DR / ACCOUNTED_CR — The debit and credit amounts in the ledger (accounted) currency.
- DESCRIPTION — Free-text explanation carried on the line.
- LINE_TYPE_CODE — The journal line type classification.
- REFERENCE_1 through REFERENCE_10 — User-definable reference fields used for reconciliation and subledger tracing.
- GL_SL_LINK_ID / GL_SL_LINK_TABLE — The link back to the originating subledger transaction.
- ATTRIBUTE1 through ATTRIBUTE20 — Descriptive flexfield attribute columns.
- TAX_CODE, TAX_TYPE_CODE, TAXABLE_LINE_FLAG, AMOUNT_INCLUDES_TAX_FLAG — Tax-related attributes supporting tax journal processing.
The surrogate identity is the composite (JE_HEADER_ID, JE_LINE_NUM); the unique index GL_JE_LINES_U1 on the same columns is the business-key candidate. The foreign keys to GL_JE_HEADERS, GL_LEDGERS, and GL_CODE_COMBINATIONS define the natural dimensional context of each line.
Common Use Cases and Queries
Typical usage centers on extracting journal detail, validating posting balances, and reconciling subledger activity. A representative pattern joins the line to its header and ledger:
- Reporting journal detail for a period: select from GL_JE_LINES where PERIOD_NAME equals the target period and STATUS indicates posted, joining GL_JE_HEADERS on JE_HEADER_ID.
- Account activity analysis: group ACCOUNTED_DR and ACCOUNTED_CR by CODE_COMBINATION_ID and PERIOD_NAME to reproduce account balances at the line level.
- Subledger reconciliation: filter by GL_SL_LINK_ID and GL_SL_LINK_TABLE to trace postings back to the originating subledger transaction.
- Balance verification: compare summed ENTERED_DR against ENTERED_CR for each JE_HEADER_ID to confirm the entry balances before posting.
Related Objects
GL_JE_LINES sits at the center of a wide relationship graph. The most significant dependents and parents are:
- GL_JE_HEADERS — Parent journal header; joined on JE_HEADER_ID.
- GL_LEDGERS — Referenced on LEDGER_ID.
- GL_CODE_COMBINATIONS — Referenced on CODE_COMBINATION_ID.
- GL_INTERFACE / GL_INTERFACE_HISTORY — Journal import staging, keyed by JE_HEADER_ID.
- GL_IMPORT_REFERENCES — Import mapping keyed by JE_HEADER_ID.
- GL_BC_PACKETS / GL_BC_PACKETS_HISTS — Balance and control packet processing keyed by JE_HEADER_ID.
- GL_ARCHIVE_LINES / GL_ARCHIVE_REFERENCES — Archive references keyed by JE_HEADER_ID.
- FA_DEPRN_DETAIL and related FA tables — Asset depreciation journals referencing JE_HEADER_ID and the various JE line number columns.
-
Table: GL_JE_LINES
12.2.2
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_JE_LINES, object_name:GL_JE_LINES, status:VALID, product: GL - General Ledger , description: Journal entry lines , implementation_dba_data: GL.GL_JE_LINES ,
-
Table: GL_JE_LINES
12.1.1
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_JE_LINES, object_name:GL_JE_LINES, status:VALID, product: GL - General Ledger , description: Journal entry lines , implementation_dba_data: GL.GL_JE_LINES ,
-
Table: FA_DEPRN_DETAIL
12.1.1
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_DEPRN_DETAIL, object_name:FA_DEPRN_DETAIL, status:VALID, product: OFA - Assets , description: Depreciation amounts charged to the depreciation expense account in each distribution line , implementation_dba_data: FA.FA_DEPRN_DETAIL ,
-
Table: FA_DEPRN_DETAIL
12.2.2
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_DEPRN_DETAIL, object_name:FA_DEPRN_DETAIL, status:VALID, product: OFA - Assets , description: Depreciation amounts charged to the depreciation expense account in each distribution line , implementation_dba_data: FA.FA_DEPRN_DETAIL ,
-
Table: FA_MC_DEPRN_DETAIL
12.1.1
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_MC_DEPRN_DETAIL, object_name:FA_MC_DEPRN_DETAIL, status:VALID, product: OFA - Assets , description: Depreciation amounts in the reporting currency, charged to the depreciation expense account in each distribution line , implementation_dba_data: FA.FA_MC_DEPRN_DETAIL ,
-
Table: FA_MC_DEPRN_DETAIL
12.2.2
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_MC_DEPRN_DETAIL, object_name:FA_MC_DEPRN_DETAIL, status:VALID, product: OFA - Assets , description: Depreciation amounts in the reporting currency, charged to the depreciation expense account in each distribution line , implementation_dba_data: FA.FA_MC_DEPRN_DETAIL ,
-
APPS.GL_CALCULATE_TAX_PKG SQL Statements
12.1.1
-
VIEW: APPS.GL_JE_LINES_DFV
12.2.2
-
VIEW: APPS.GL_JE_LINES_DFV
12.1.1
-
VIEW: APPS.IGI_GL_JE_LINES_V
12.2.2
-
VIEW: APPS.IGI_GL_JE_LINES_V
12.1.1
-
APPS.GL_CALCULATE_TAX_PKG SQL Statements
12.2.2
-
VIEW: APPS.GL_JE_LINES3_DFV
12.1.1
-
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 ,
-
VIEW: APPS.GL_JE_LINES1_DFV
12.1.1
-
View: IGI_EER_JE_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_EER_JE_LINES_V, object_name:IGI_EER_JE_LINES_V, status:VALID, product: IGI - Public Sector Financials International , description: Based on GL_JE_BATCHES, GL_JE_HEADERS and GL_JE_LINES , implementation_dba_data: APPS.IGI_EER_JE_LINES_V ,
-
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 ,
-
VIEW: APPS.PA_JE_LINES
12.2.2
-
VIEW: APPS.IGI_EER_JE_LINES_V
12.1.1
-
Table: FA_DEFERRED_DEPRN
12.2.2
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_DEFERRED_DEPRN, object_name:FA_DEFERRED_DEPRN, status:VALID, product: OFA - Assets , description: Deferred depreciation calculated for each distribution line , implementation_dba_data: FA.FA_DEFERRED_DEPRN ,
-
VIEW: APPS.GL_JE_LINES1_DFV
12.2.2
-
APPS.GL_JOURNAL_IMPORT_TAX_PKG SQL Statements
12.2.2
-
Table: FA_DEFERRED_DEPRN
12.1.1
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_DEFERRED_DEPRN, object_name:FA_DEFERRED_DEPRN, status:VALID, product: OFA - Assets , description: Deferred depreciation calculated for each distribution line , implementation_dba_data: FA.FA_DEFERRED_DEPRN ,
-
VIEW: APPS.IGI_EER_JE_LINES_V
12.2.2
-
VIEW: APPS.GL_JE_LINES3_DFV
12.2.2
-
Table: FA_MC_DEFERRED_DEPRN
12.1.1
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_MC_DEFERRED_DEPRN, object_name:FA_MC_DEFERRED_DEPRN, status:VALID, product: OFA - Assets , description: Deferred depreciation calculated for each distribution line in the reporting currency , implementation_dba_data: FA.FA_MC_DEFERRED_DEPRN ,
-
Table: FA_MC_DEFERRED_DEPRN
12.2.2
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_MC_DEFERRED_DEPRN, object_name:FA_MC_DEFERRED_DEPRN, status:VALID, product: OFA - Assets , description: Deferred depreciation calculated for each distribution line in the reporting currency , implementation_dba_data: FA.FA_MC_DEFERRED_DEPRN ,
-
APPS.GL_JOURNAL_IMPORT_TAX_PKG SQL Statements
12.1.1
-
APPS.GL_JE_LINES_PKG SQL Statements
12.1.1
-
APPS.GL_JE_LINES_PKG SQL Statements
12.2.2
-
View: IGI_EER_JE_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_EER_JE_LINES_V, object_name:IGI_EER_JE_LINES_V, status:VALID, product: IGI - Public Sector Financials International , description: Based on GL_JE_BATCHES, GL_JE_HEADERS and GL_JE_LINES , implementation_dba_data: APPS.IGI_EER_JE_LINES_V ,
-
View: IGI_COM_GL_JE_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_COM_GL_JE_LINES_V, object_name:IGI_COM_GL_JE_LINES_V, status:VALID, product: IGI - Public Sector Financials International , description: Based on GL_JE_BATCHES, GL_JE_HEADERS, GL_JE_LINES and GL_JE_SOURCES_TL , implementation_dba_data: APPS.IGI_COM_GL_JE_LINES_V ,
-
VIEW: APPS.GLBV_JOURNAL_LINES
12.1.1
-
View: IGI_INT_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_INT_DETAILS_V, object_name:IGI_INT_DETAILS_V, status:VALID, product: IGI - Public Sector Financials International , description: Based on GL_JE_BATCHES, IGI_INT_DESCRIPTRS, GL_JE_HEADERS, GL_JE_LINES and GL_IMPORT_REFERENCES , implementation_dba_data: APPS.IGI_INT_DETAILS_V ,
-
VIEW: APPS.FV_PAYABLE_REFUNDS_V
12.1.1
-
VIEW: APPS.PA_JE_LINES
12.1.1
-
APPS.GL_CASH_CLR_ACCT_ANAL_RPT_PKG SQL Statements
12.1.1
-
View: IGI_COM_GL_JE_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_COM_GL_JE_LINES_V, object_name:IGI_COM_GL_JE_LINES_V, status:VALID, product: IGI - Public Sector Financials International , description: Based on GL_JE_BATCHES, GL_JE_HEADERS, GL_JE_LINES and GL_JE_SOURCES_TL , implementation_dba_data: APPS.IGI_COM_GL_JE_LINES_V ,
-
VIEW: APPS.IGI_INT_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_INT_DETAILS_V, object_name:IGI_INT_DETAILS_V, status:VALID,
-
VIEW: APPS.IGI_INT_DETAILS_V
12.1.1
-
VIEW: APPS.IGI_INT_DETAILS_V
12.2.2
-
APPS.GL_CASH_CLR_ACCT_ANAL_RPT_PKG SQL Statements
12.2.2
-
View: IGI_BUD_HISTORY_ENTRIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_BUD_HISTORY_ENTRIES_V, object_name:IGI_BUD_HISTORY_ENTRIES_V, status:VALID, product: IGI - Public Sector Financials International , description: Based on GL_JE_HEADERS, GL_JE_LINES, GL_PERIODS and GL_SETS_OF_BOOKS , implementation_dba_data: APPS.IGI_BUD_HISTORY_ENTRIES_V ,
-
VIEW: APPS.XLA_GL_JE_AEL_V
12.2.2
-
View: IGI_INT_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_INT_DETAILS_V, object_name:IGI_INT_DETAILS_V, status:VALID, product: IGI - Public Sector Financials International , description: Based on GL_JE_BATCHES, IGI_INT_DESCRIPTRS, GL_JE_HEADERS, GL_JE_LINES and GL_IMPORT_REFERENCES , implementation_dba_data: APPS.IGI_INT_DETAILS_V ,
-
APPS.GL_XML_JOURNAL_RPT_PKG SQL Statements
12.2.2
-
VIEW: APPS.GLFV_JOURNAL_LINES
12.1.1
-
VIEW: APPS.IGI_INT_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_INT_DETAILS_V, object_name:IGI_INT_DETAILS_V, status:VALID,
-
VIEW: APPS.PA_UBR_UER_DR_PRJ_V
12.2.2
-
VIEW: APPS.XLA_GL_JE_AEL_V
12.1.1