Search Results xla_upg_errors
Overview
XLA_UPG_ERRORS is a Subledger Accounting (XLA) table in Oracle E-Business Suite that stores error records generated during the upgrade of subledger accounting entries. The table resides in the XLA schema and is classified as VALID in both Oracle EBS 12.1.1 and 12.2.2. Its documented purpose is to capture "errors related to upgraded entries," making it an integral component of the upgrade diagnostics infrastructure that accompanies the transition of historical subledger data into the XLA accounting model.
Under the heuristic Data Vault classification mined from its foreign key structure, XLA_UPG_ERRORS is identified as a standalone object. This suggests a modeling treatment as an independent table rather than a strict hub, link, or satellite. This is consistent with its role as a diagnostic log: its rows are descriptive error records rather than participants in a normalized business-key network, and the schema does not expose outbound FK relationships other than the reference to XLA_UPG_BATCHES.
Key Information Stored
The table contains 20 documented columns. The most significant are summarized below:
- UPG_ERROR_ID — The surrogate primary key, enforced by XLA_UPG_ERRORS_PK and separately indexed by XLA_UPG_ERRORS_U1 as the unique business-key candidate. It uniquely identifies each error row.
- UPG_BATCH_ID — Foreign key referencing XLA_UPG_BATCHES, tying each error to the specific upgrade batch that produced it.
- UPG_SOURCE_APPLICATION_ID and APPLICATION_ID — Identify the originating application and the target application context for the upgrade error.
- ERROR_LEVEL — Qualifies the severity or category of the error, useful for filtering and prioritization during remediation.
- ENTITY_ID and EVENT_ID — Identify the subledger entity and event associated with the failed upgrade record.
- AE_HEADER_ID and AE_LINE_NUM — Point to the accounting entry header and line that could not be upgraded.
- TEMP_LINE_NUM — Supports mapping to temporary or staging line references used during conversion.
- ERROR_MESSAGE_NAME — The message identifier describing the specific failure condition.
- Audit and concurrency columns — CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN, PROGRAM_UPDATE_DATE, PROGRAM_APPLICATION_ID, PROGRAM_ID, and REQUEST_ID provide standard WHO-column auditing and concurrent program/request traceability.
Common Use Cases and Queries
The principal use case is post-upgrade remediation: identifying and resolving entries that failed to convert into XLA. A typical query joins the error table to its parent batch:
SELECT e.UPG_ERROR_ID, e.UPG_BATCH_ID, e.ERROR_LEVEL, e.ERROR_MESSAGE_NAME, e.AE_HEADER_ID, e.AE_LINE_NUM FROM XLA.XLA_UPG_ERRORS e WHERE e.UPG_BATCH_ID = :batch_id ORDER BY e.ERROR_LEVEL, e.CREATION_DATE;- Aggregating error counts by message name or level to triage the most frequent failure categories.
- Tracing errors back to the responsible concurrent request via REQUEST_ID for audit and support escalation.
- Reporting on upgrade quality by comparing error volumes against total processed entries for a batch.
Related Objects
The documented foreign key relationship anchors XLA_UPG_ERRORS to the upgrade batch framework. The most significant related objects include:
- XLA_UPG_BATCHES — Parent table joined via
XLA_UPG_ERRORS.UPG_BATCH_ID = XLA_UPG_BATCHES.UPG_BATCH_ID. - XLA_AE_HEADERS and XLA_AE_LINES — Related through AE_HEADER_ID and AE_LINE_NUM to the accounting entries involved.
- XLA_EVENTS and XLA_ENTITIES — Associated through EVENT_ID and ENTITY_ID.
- FND_APPLICATION — Resolves APPLICATION_ID and UPG_SOURCE_APPLICATION_ID to application names.
- FND_CONCURRENT_REQUESTS — Resolves REQUEST_ID for job-level diagnostics.
-
Table: XLA_UPG_ERRORS
12.1.1
owner:XLA, object_type:TABLE, fnd_design_data:XLA.XLA_UPG_ERRORS, object_name:XLA_UPG_ERRORS, status:VALID, product: XLA - Subledger Accounting , description: Errors related to upgraded entries , implementation_dba_data: XLA.XLA_UPG_ERRORS ,
-
Table: XLA_UPG_ERRORS
12.2.2
owner:XLA, object_type:TABLE, fnd_design_data:XLA.XLA_UPG_ERRORS, object_name:XLA_UPG_ERRORS, status:VALID, product: XLA - Subledger Accounting , description: Errors related to upgraded entries , implementation_dba_data: XLA.XLA_UPG_ERRORS ,
-
APPS.XLA_UPG_VERIFICATION_PUB SQL Statements
12.1.1
-
APPS.XLA_UPG_VERIFICATION_PUB SQL Statements
12.2.2
-
SYNONYM: APPS.XLA_UPG_ERRORS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:XLA_UPG_ERRORS, status:VALID,
-
SYNONYM: APPS.XLA_UPG_ERRORS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:XLA_UPG_ERRORS, status:VALID,
-
VIEW: XLA.XLA_UPG_ERRORS#
12.2.2
owner:XLA, object_type:VIEW, object_name:XLA_UPG_ERRORS#, status:VALID,
-
VIEW: XLA.XLA_UPG_ERRORS#
12.2.2
-
PACKAGE BODY: APPS.XLA_UPG_VERIFICATION_PUB
12.2.2
-
PACKAGE BODY: APPS.XLA_UPG_VERIFICATION_PUB
12.1.1
-
APPS.XLA_UPGRADE_PUB SQL Statements
12.1.1
-
PACKAGE BODY: APPS.XLA_UPG_VERIFICATION_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:XLA_UPG_VERIFICATION_PUB, status:VALID,
-
PACKAGE BODY: APPS.XLA_UPGRADE_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:XLA_UPGRADE_PUB, status:VALID,
-
PACKAGE BODY: APPS.XLA_UPG_VERIFICATION_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:XLA_UPG_VERIFICATION_PUB, status:VALID,
-
PACKAGE BODY: APPS.XLA_DATAFIXES_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:XLA_DATAFIXES_PUB, status:VALID,
-
TABLE: XLA.XLA_UPG_ERRORS
12.1.1
owner:XLA, object_type:TABLE, fnd_design_data:XLA.XLA_UPG_ERRORS, object_name:XLA_UPG_ERRORS, status:VALID,
-
TABLE: XLA.XLA_UPG_ERRORS
12.2.2
owner:XLA, object_type:TABLE, fnd_design_data:XLA.XLA_UPG_ERRORS, object_name:XLA_UPG_ERRORS, status:VALID,
-
APPS.XLA_UPGRADE_PUB SQL Statements
12.2.2
-
PACKAGE BODY: APPS.XLA_DATAFIXES_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:XLA_DATAFIXES_PUB, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.XLA_UPGRADE_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:XLA_UPGRADE_PUB, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.XLA_UPGRADE_PUB
12.1.1
-
PACKAGE BODY: APPS.XLA_UPGRADE_PUB
12.2.2
-
APPS.XLA_DATAFIXES_PUB dependencies on XLA_UPG_ERRORS
12.1.1
-
APPS.XLA_UPG_VERIFICATION_PUB dependencies on XLA_UPG_ERRORS
12.1.1
-
APPS.XLA_DATAFIXES_PUB dependencies on XLA_UPG_ERRORS
12.2.2
-
APPS.XLA_UPGRADE_PUB dependencies on XLA_UPG_ERRORS
12.1.1
-
APPS.XLA_UPG_VERIFICATION_PUB dependencies on XLA_UPG_ERRORS
12.2.2
-
APPS.XLA_UPGRADE_PUB dependencies on XLA_UPG_ERRORS
12.2.2
-
APPS.XLA_DATAFIXES_PUB SQL Statements
12.1.1
-
APPS.XLA_DATAFIXES_PUB SQL Statements
12.2.2
-
APPS.XLA_UPG_VERIFICATION_PUB dependencies on XLA_UPG_ERRORS_S
12.1.1
-
APPS.XLA_UPG_VERIFICATION_PUB dependencies on XLA_UPG_ERRORS_S
12.2.2
-
APPS.XLA_UPGRADE_PUB dependencies on XLA_UPG_ERRORS_S
12.1.1
-
APPS.XLA_UPGRADE_PUB dependencies on XLA_UPG_ERRORS_S
12.2.2
-
PACKAGE BODY: APPS.XLA_DATAFIXES_PUB
12.1.1
-
eTRM - XLA Tables and Views
12.2.2
-
eTRM - XLA Tables and Views
12.1.1
-
PACKAGE BODY: APPS.XLA_DATAFIXES_PUB
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1