Search Results jl_co_gl_conc_errs
Overview
JL.JL_CO_GL_CONC_ERRS is a transactional error-log table within the Oracle E-Business Suite Latin America Localizations (JL) product family. It records errors produced by the Generate Third Party Balances concurrent program, capturing the specific journal header and journal line combinations that failed validation or processing. Its defining behavioral characteristic is that the table is refreshed on every new submission of that concurrent program: rows therefore represent the state of the most recent run only, not a cumulative audit history. Because the program truncates or replaces prior content, the table should be regarded as an operational diagnostic surface rather than a permanent archive.
Under a heuristic Data Vault classification derived from its foreign-key structure, this object is best modelled as a link: it resolves associations among a concurrent process instance, a journal header, and a journal line, carrying descriptive error text as a non-key attribute. Its grain is one row per erroring journal line within a single process execution. The table is owned by the JL schema, holds status VALID, and is documented with ten physical columns in ETRM 12.2.2; the same definition applies to 12.1.1 installations of the Latin America localizations.
Key Information Stored
The documented structure comprises ten columns, of which the following carry substantive meaning:
- PROCESS_ID — identifier of the concurrent program submission (process instance) that generated the error set. This is the primary grouping key for a run.
- JE_HEADER_ID — the GL journal header affected by the error; refers to
GL_JE_LINES.JE_HEADER_ID. - JE_LINE_NUM — the specific journal line number within that header; combined with
JE_HEADER_ID, it identifies the failing line. - MESSAGE_TEXT — the human-readable error message describing why the line could not be processed.
- IDENTIFIER — an additional descriptive identifier associated with the error record.
- CREATED_BY, CREATION_DATE — standard WHO audit columns recording row insertion and the creating user.
- LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — standard WHO audit columns recording the most recent modification.
The surrogate primary key is JL_CO_GL_CONC_ERRS_PK, defined over the composite of PROCESS_ID, JE_HEADER_ID, and JE_LINE_NUM. Because this composite is both the primary key and the natural business key, no separate unique index is documented. Two foreign keys are declared: JE_HEADER_ID plus JE_LINE_NUM reference GL_JE_LINES, and PROCESS_ID references JL_CO_GL_CONC_CTRL, which holds the controlling record for each program run.
Common Use Cases and Queries
The primary scenario is post-run troubleshooting: an accountant submits Generate Third Party Balances, the program reports exceptions, and the error log is inspected to determine which journal lines failed and why. A typical query joins the log to the journal lines to recover accounting context:
SELECT e.process_id, e.je_header_id, e.je_line_num, e.message_text FROM jl.jl_co_gl_conc_errs e WHERE e.process_id = :p_process_id ORDER BY e.je_header_id, e.je_line_num;- Joining
GL_JE_LINESonJE_HEADER_IDandJE_LINE_NUMto retrieve the entered debit/credit amount, currency, and code combination for each failed line. - Joining
JL_CO_GL_CONC_CTRLonPROCESS_IDto correlate the error set with its controlling submission record. - Aggregating
COUNT(*)grouped byMESSAGE_TEXTto identify the dominant failure category in a run.
Because content is replaced on each submission, downstream reporting should extract rows immediately after program completion if an audit trail is required. Never treat the table as historical; re-running the concurrent program destroys the prior error set.
Related Objects
- JL_CO_GL_CONC_CTRL — controlling table for concurrent submissions; joined via
PROCESS_ID. - GL_JE_LINES — General Ledger journal lines; joined via
JE_HEADER_IDandJE_LINE_NUM. - GL_JE_HEADERS — journal header context for the failing lines, reachable through
GL_JE_LINES. - JL_CO_GL_BALANCES and related JL third-party balance tables — the intended output of the program that this log monitors.
- Generate Third Party Balances concurrent program — the sole documented writer of this table.
- FND_CONCURRENT_REQUESTS — request-level metadata that can be correlated to
PROCESS_IDfor run timing and status.
-
Table: JL_CO_GL_CONC_ERRS
12.1.1
owner:JL, object_type:TABLE, fnd_design_data:JL.JL_CO_GL_CONC_ERRS, object_name:JL_CO_GL_CONC_ERRS, status:VALID, product: JL - Latin America Localizations , description: Third Party Errors Table Containing Error Log That Is Refreshed On Every New Submission Of 'Generate Third Party Balances' Concurrent Program , implementation_dba_data: JL.JL_CO_GL_CONC_ERRS ,
-
Table: JL_CO_GL_CONC_ERRS
12.2.2
owner:JL, object_type:TABLE, fnd_design_data:JL.JL_CO_GL_CONC_ERRS, object_name:JL_CO_GL_CONC_ERRS, status:VALID, product: JL - Latin America Localizations , description: Third Party Errors Table Containing Error Log That Is Refreshed On Every New Submission Of 'Generate Third Party Balances' Concurrent Program , implementation_dba_data: JL.JL_CO_GL_CONC_ERRS ,
-
VIEW: JL.JL_CO_GL_CONC_ERRS#
12.2.2
owner:JL, object_type:VIEW, object_name:JL_CO_GL_CONC_ERRS#, status:VALID,
-
SYNONYM: APPS.JL_CO_GL_CONC_ERRS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:JL_CO_GL_CONC_ERRS, status:VALID,
-
SYNONYM: APPS.JL_CO_GL_CONC_ERRS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:JL_CO_GL_CONC_ERRS, status:VALID,
-
VIEW: JL.JL_CO_GL_CONC_ERRS#
12.2.2
-
TABLE: JL.JL_CO_GL_CONC_ERRS
12.2.2
owner:JL, object_type:TABLE, fnd_design_data:JL.JL_CO_GL_CONC_ERRS, object_name:JL_CO_GL_CONC_ERRS, status:VALID,
-
TABLE: JL.JL_CO_GL_CONC_ERRS
12.1.1
owner:JL, object_type:TABLE, fnd_design_data:JL.JL_CO_GL_CONC_ERRS, object_name:JL_CO_GL_CONC_ERRS, status:VALID,
-
Table: JL_CO_GL_CONC_CTRL
12.2.2
owner:JL, object_type:TABLE, fnd_design_data:JL.JL_CO_GL_CONC_CTRL, object_name:JL_CO_GL_CONC_CTRL, status:VALID, product: JL - Latin America Localizations , description: Third Party Control Table Containing Log For Every Submission Of 'Generate Third Party Balances' Concurrent Program , implementation_dba_data: JL.JL_CO_GL_CONC_CTRL ,
-
Table: JL_CO_GL_CONC_CTRL
12.1.1
owner:JL, object_type:TABLE, fnd_design_data:JL.JL_CO_GL_CONC_CTRL, object_name:JL_CO_GL_CONC_CTRL, status:VALID, product: JL - Latin America Localizations , description: Third Party Control Table Containing Log For Every Submission Of 'Generate Third Party Balances' Concurrent Program , implementation_dba_data: JL.JL_CO_GL_CONC_CTRL ,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
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 ,
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.JL_CO_GL_NIT_MANAGEMENT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JL_CO_GL_NIT_MANAGEMENT, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
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 ,
-
12.2.2 FND Design Data
12.2.2
-
PACKAGE BODY: APPS.JL_CO_GL_NIT_MANAGEMENT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JL_CO_GL_NIT_MANAGEMENT, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
APPS.JL_CO_GL_NIT_MANAGEMENT SQL Statements
12.1.1
-
APPS.JL_CO_GL_NIT_MANAGEMENT SQL Statements
12.2.2
-
PACKAGE BODY: APPS.JL_CO_GL_NIT_MANAGEMENT
12.1.1
-
PACKAGE BODY: APPS.JL_CO_GL_NIT_MANAGEMENT
12.2.2
-
APPS.JL_CO_GL_NIT_MANAGEMENT dependencies on JL_CO_GL_CONC_ERRS
12.2.2
-
APPS.JL_CO_GL_NIT_MANAGEMENT dependencies on JL_CO_GL_CONC_ERRS
12.1.1
-
APPS.JL_CO_GL_NIT_MANAGEMENT dependencies on DUAL
12.1.1
-
APPS.JL_CO_GL_NIT_MANAGEMENT dependencies on DUAL
12.2.2
-
APPS.JL_CO_GL_NIT_MANAGEMENT dependencies on XLA_SECURITY_PKG
12.2.2
-
eTRM - JL Tables and Views
12.1.1
description: Temporary Table For Inflation Adjustment Report ,
-
eTRM - JL Tables and Views
12.2.2
description: JL_ZZ_INFO_T is temporary table ,
-
APPS.JL_CO_GL_NIT_MANAGEMENT dependencies on FND_FILE
12.1.1
-
eTRM - JL Tables and Views
12.1.1
description: Temporary Table For Inflation Adjustment Report ,
-
eTRM - JL Tables and Views
12.2.2
description: JL_ZZ_INFO_T is temporary table ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1