Search Results gl_je_lines_recon
Overview
The GL_JE_LINES_RECON table is a General Ledger reconciliation table in the Oracle E-Business Suite GL schema. It stores reconciliation status information for individual journal entry lines, allowing reconciliation processes to track the approval, clearing, or matching state of specific journal lines against controlling records such as bank statements or intercompany balances. It is closely coupled with GL_JE_HEADERS and GL_LEDGERS, positioning it as a subordinate detail table within the GL journal posting model.
The primary key GL_JE_LINES_RECON_PK is composed of JE_HEADER_ID and JE_LINE_NUM, and a unique index GL_JE_LINES_RECON_U1 on the same two columns acts as a documented business-key candidate. In Data Vault terms, the table's FK structure is heuristically classified as a link, suggesting a modeling approach that resolves the many-to-many or dependent relationship between journal headers/lines and ledger-level reconciliation state.
Key Information Stored
- JE_HEADER_ID – Foreign key to
GL_JE_HEADERS; identifies the parent journal entry header. - JE_LINE_NUM – Line number within the journal entry; together with JE_HEADER_ID forms the primary and business key.
- LEDGER_ID – Foreign key to
GL_LEDGERS; identifies the ledger context for the reconciliation record. - JGZZ_RECON_STATUS – Status flag describing the reconciliation state of the journal line.
- JGZZ_RECON_DATE – Date the reconciliation status was recorded.
- JGZZ_RECON_ID – Identifier linking the line to a specific reconciliation event or batch.
- JGZZ_RECON_REF – Reference value (e.g., external document or reconciliation reference).
- CREATED_BY, CREATION_DATE – Audit columns recording who created the row and when.
- LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN – Audit columns tracking the most recent modification.
The JGZZ_* columns carry the substantive reconciliation payload, while the remainder are standard "WHO" audit and key columns. The surrogate-style primary key is really a composite natural/business key here rather than a synthetic sequence column.
Common Use Cases and Queries
Typical uses include identifying unreconciled journal lines, reporting reconciliation aging, and joining reconciliation state to header and ledger attributes for financial close dashboards.
- Unreconciled lines query:
SELECT r.JE_HEADER_ID, r.JE_LINE_NUM, r.LEDGER_ID, r.JGZZ_RECON_STATUS
FROM GL_JE_LINES_RECON r
WHERE r.JGZZ_RECON_STATUS <> 'RECONCILED'; - Join to header and ledger:
SELECT h.NAME, l.NAME, r.JGZZ_RECON_DATE
FROM GL_JE_LINES_RECON r
JOIN GL_JE_HEADERS h ON h.JE_HEADER_ID = r.JE_HEADER_ID
JOIN GL_LEDGERS l ON l.LEDGER_ID = r.LEDGER_ID; - Aging analysis: aggregate by
JGZZ_RECON_DATEto surface stale reconciliations.
Related Objects
- GL_JE_HEADERS – join on
JE_HEADER_ID; parent header of each reconciled line. - GL_LEDGERS – join on
LEDGER_ID; ledger context. - GL_JE_LINES – logical counterpart holding the actual journal line amounts.
- GL_JE_BATCHES – upstream batch grouping via headers.
- GL_JE_SOURCES – journal source definition reachable through headers.
Because GL_JE_LINES_RECON is a reconciliation-specific structure, most reporting should join it back to GL_JE_LINES and GL_JE_HEADERS to obtain amounts, periods, and descriptions alongside reconciliation status.
-
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_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 ,
-
APPS.GL_JE_LINES_RECON_PKG SQL Statements
12.2.2
-
APPS.GL_JE_LINES_RECON_PKG SQL Statements
12.1.1
-
VIEW: GL.GL_JE_LINES_RECON#
12.2.2
owner:GL, object_type:VIEW, object_name:GL_JE_LINES_RECON#, status:VALID,
-
SYNONYM: APPS.GL_JE_LINES_RECON
12.1.1
owner:APPS, object_type:SYNONYM, object_name:GL_JE_LINES_RECON, status:VALID,
-
SYNONYM: APPS.GL_JE_LINES_RECON
12.2.2
owner:APPS, object_type:SYNONYM, object_name:GL_JE_LINES_RECON, status:VALID,
-
PACKAGE BODY: APPS.GL_JE_LINES_RECON_PKG
12.1.1
-
PACKAGE BODY: APPS.GL_JE_LINES_RECON_PKG
12.2.2
-
VIEW: GL.GL_JE_LINES_RECON#
12.2.2
-
APPS.GL_ADD_RECON_UPGRADE_PKG SQL Statements
12.1.1
-
PACKAGE: APPS.GL_ADD_RECON_UPGRADE_PKG
12.2.2
-
PACKAGE: APPS.GL_ADD_RECON_UPGRADE_PKG
12.1.1
-
PACKAGE BODY: APPS.GL_ADD_RECON_UPGRADE_PKG
12.2.2
-
Concurrent Program: GLRCNM
12.2.2
execution_filename: GL_ADD_RECON_UPGRADE_PKG.upgrade_recon , product: GL - General Ledger , user_name: GLRCNM , description: Upgrade gl_je_lines_recon master , argument_method: Standard , enabled: Yes , execution_method: PL/SQL Stored Procedure ,
-
TABLE: GL.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,
-
TABLE: GL.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,
-
APPS.GL_ADD_RECON_UPGRADE_PKG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.GL_ADD_RECON_UPGRADE_PKG
12.1.1
-
VIEW: APPS.GL_JE_LINES_RECON_V
12.2.2
-
Concurrent Program: GLRCNM
12.1.1
execution_filename: GL_ADD_RECON_UPGRADE_PKG.upgrade_recon , product: GL - General Ledger , user_name: GLRCNM , description: Upgrade gl_je_lines_recon master , argument_method: Standard , enabled: Yes , execution_method: PL/SQL Stored Procedure ,
-
Concurrent Program: GLRCNINS
12.2.2
execution_filename: GL_ADD_RECON_UPGRADE_PKG.update_gl_je_lines_recon_table , product: GL - General Ledger , user_name: GLRCNINS , description: Insert rows from gl_je_lines to gl_je_lines_recon , argument_method: Standard , enabled: Yes , execution_method: PL/SQL Stored Procedure ,
-
Concurrent Program: GLRCNINS
12.1.1
execution_filename: GL_ADD_RECON_UPGRADE_PKG.update_gl_je_lines_recon_table , product: GL - General Ledger , user_name: GLRCNINS , description: Insert rows from gl_je_lines to gl_je_lines_recon , argument_method: Standard , enabled: Yes , execution_method: PL/SQL Stored Procedure ,
-
PACKAGE BODY: APPS.GL_JE_LINES_RECON_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GL_JE_LINES_RECON_PKG, status:VALID,
-
PACKAGE BODY: APPS.GL_JE_LINES_RECON_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GL_JE_LINES_RECON_PKG, status:VALID,
-
PACKAGE BODY: APPS.GL_JOURNALS_AUTOCOPY
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GL_JOURNALS_AUTOCOPY, status:VALID,
-
PACKAGE BODY: APPS.GL_JOURNALS_AUTOCOPY
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GL_JOURNALS_AUTOCOPY, status:VALID,
-
VIEW: APPS.GL_JE_LINES_RECON_V
12.1.1
-
Table: GL_LEDGERS
12.1.1
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_LEDGERS, object_name:GL_LEDGERS, status:VALID, product: GL - General Ledger , description: Ledger definition , implementation_dba_data: GL.GL_LEDGERS ,
-
PACKAGE BODY: APPS.GL_JE_HEADERS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GL_JE_HEADERS_PKG, status:VALID,
-
PACKAGE BODY: APPS.GL_JE_HEADERS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GL_JE_HEADERS_PKG, status:VALID,
-
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 ,
-
VIEW: APPS.JG_ZZ_TA_JE_LINES_V
12.2.2
-
VIEW: APPS.JG_ZZ_TA_JE_LINES_V
12.1.1
-
VIEW: APPS.GL_JE_LINES_V
12.2.2
-
Table: GL_LEDGERS
12.2.2
owner:GL, object_type:TABLE, fnd_design_data:SQLGL.GL_LEDGERS, object_name:GL_LEDGERS, status:VALID, product: GL - General Ledger , description: Ledger definition , implementation_dba_data: GL.GL_LEDGERS ,
-
VIEW: APPS.GL_JE_LINES_V
12.1.1
-
12.2.2 DBA Data
12.2.2
-
View: GL_JE_LINES_RECON_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_JE_LINES_RECON_V, object_name:GL_JE_LINES_RECON_V, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GL_JE_LINES_RECON_V ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
View: GL_JE_LINES_RECON_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_JE_LINES_RECON_V, object_name:GL_JE_LINES_RECON_V, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GL_JE_LINES_RECON_V ,
-
VIEW: APPS.GL_JE_LINES_RECON_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_JE_LINES_RECON_V, object_name:GL_JE_LINES_RECON_V, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
APPS.GL_JOURNALS_AUTOCOPY SQL Statements
12.2.2
-
View: JG_ZZ_TA_JE_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JG.JG_ZZ_TA_JE_LINES_V, object_name:JG_ZZ_TA_JE_LINES_V, status:VALID, product: JG - Regional Localizations , implementation_dba_data: APPS.JG_ZZ_TA_JE_LINES_V ,