Search Results xla_transaction_entities
Overview
The XLA_TRANSACTION_ENTITIES table is a core repository within the Oracle E-Business Suite Subledger Accounting (XLA) architecture. It serves as the master definition table for all subledger transactions or documents that are candidates for accounting. Every transaction from a source subledger module—such as Payables (AP), Receivables (AR), or Assets (FA)—must be registered as a unique entity in this table before accounting events can be generated for it. The table acts as a critical junction, linking the original transaction identifier from its source module to the accounting events and journal entries created in Subledger Accounting.
Key Information Stored
The table's primary function is to store metadata that uniquely identifies a transaction and its context for the accounting engine. While the full column list is extensive, the most critical fields include:
- ENTITY_ID: The surrogate primary key (PK) for the entity record, uniquely identifying the transaction within SLA.
- APPLICATION_ID: Identifies the source EBS product (e.g., 200 for Payables, 222 for Receivables).
- ENTITY_CODE: A code representing the specific transaction type or document class within the source application (e.g., 'AP_INVOICES', 'AR_INVOICES').
- TRANSACTION_NUMBER: The original transaction identifier from the source module, such as an invoice number.
- SOURCE_ID_INT_1 and other SOURCE_ID columns: Typically store the key identifiers from the source transaction table (e.g., the AP_INVOICES_ALL.INVOICE_ID), enabling traceability back to the original record.
- LEDGER_ID: The ledger for which accounting is performed.
- PROCESS_STATUS_CODE: Indicates the current accounting status (e.g., 'U' for unprocessed, 'P' for processed).
Common Use Cases and Queries
This table is central for troubleshooting accounting issues, auditing the flow of transactions into the general ledger, and building custom reports. A common scenario is tracing a subledger journal entry back to its source transaction. A typical diagnostic query joins XLA_TRANSACTION_ENTITIES to the event and header tables:
SELECT xte.entity_code,
xte.transaction_number,
xah.accounting_entry_status_code,
xah.je_category_name
FROM xla_transaction_entities xte,
xla_ae_headers xah
WHERE xte.application_id = xah.application_id
AND xte.entity_id = xah.entity_id
AND xte.transaction_number = 'INV12345';
Another frequent use is identifying transactions pending accounting processing by filtering on PROCESS_STATUS_CODE = 'U' for a specific ledger and application.
Related Objects
XLA_TRANSACTION_ENTITIES has a primary key relationship with several fundamental Subledger Accounting tables. The ENTITY_ID column is a foreign key in:
- XLA_EVENTS: Stores the accounting events created for the entity. Join on
ENTITY_IDandAPPLICATION_ID. - XLA_AE_HEADERS: Stores the accounting journal entry headers. Join on
ENTITY_IDandAPPLICATION_ID. - XLA_AE_LINES: Typically accessed via XLA_AE_HEADERS, it ultimately links journal lines back to the source entity.
To trace back to the original source module transaction, developers must join the SOURCE_ID_INT_1 (and related) columns to the key columns of the source transaction table, such as AP_INVOICES_ALL.INVOICE_ID, based on the APPLICATION_ID and ENTITY_CODE.
-
Table: XLA_TRANSACTION_ENTITIES
12.2.2
owner:XLA, object_type:TABLE, fnd_design_data:XLA.XLA_TRANSACTION_ENTITIES, object_name:XLA_TRANSACTION_ENTITIES, status:VALID, product: XLA - Subledger Accounting , description: The table XLA_ENTITIES contains information about sub-ledger document or transactions. , implementation_dba_data: XLA.XLA_TRANSACTION_ENTITIES ,
-
Table: XLA_TRANSACTION_ENTITIES
12.1.1
owner:XLA, object_type:TABLE, fnd_design_data:XLA.XLA_TRANSACTION_ENTITIES, object_name:XLA_TRANSACTION_ENTITIES, status:VALID, product: XLA - Subledger Accounting , description: The table XLA_ENTITIES contains information about sub-ledger document or transactions. , implementation_dba_data: XLA.XLA_TRANSACTION_ENTITIES ,
-
APPS.FA_DELETION_PVT dependencies on XLA_TRANSACTION_ENTITIES
12.1.1
-
APPS.OKL_PERD_STATUS_PVT dependencies on XLA_TRANSACTION_ENTITIES
12.1.1
-
APPS.JL_CO_GL_NIT_MANAGEMENT dependencies on XLA_TRANSACTION_ENTITIES
12.1.1
-
APPS.AP_PURGE_PKG dependencies on XLA_TRANSACTION_ENTITIES
12.1.1
-
APPS.LNS_DISTRIBUTIONS_PUB dependencies on XLA_TRANSACTION_ENTITIES
12.1.1
-
APPS.FUN_RECON_RPT_PKG dependencies on XLA_TRANSACTION_ENTITIES
12.1.1
-
APPS.AP_PURGE_PKG dependencies on XLA_TRANSACTION_ENTITIES
12.2.2
-
APPS.XLA_THIRD_PARTY_MERGE dependencies on XLA_TRANSACTION_ENTITIES
12.2.2
-
APPS.XLA_PERIOD_CLOSE_EXP_PKG dependencies on XLA_TRANSACTION_ENTITIES
12.2.2
-
APPS.AP_FUNDS_CONTROL_PKG dependencies on XLA_TRANSACTION_ENTITIES
12.2.2
-
APPS.FV_FACTS_TRX_REGISTER dependencies on XLA_TRANSACTION_ENTITIES
12.2.2
-
APPS.FV_GTAS_GL_PKG dependencies on XLA_TRANSACTION_ENTITIES
12.2.2
-
APPS.FV_UTILITY dependencies on XLA_TRANSACTION_ENTITIES
12.2.2
-
APPS.XLA_MULTIPERIOD_ACCOUNTING_PKG dependencies on XLA_TRANSACTION_ENTITIES
12.2.2
-
APPS.XLA_TRANSFER_PKG dependencies on XLA_TRANSACTION_ENTITIES
12.2.2
-
APPS.JA_JAINCTRB_XMLP_PKG dependencies on XLA_TRANSACTION_ENTITIES
12.2.2
-
APPS.PSA_BC_XLA_PVT dependencies on XLA_TRANSACTION_ENTITIES
12.2.2
-
APPS.XLA_ACCOUNTING_PUB_PKG dependencies on XLA_TRANSACTION_ENTITIES
12.2.2
-
APPS.OKL_PERD_STATUS_PVT dependencies on XLA_TRANSACTION_ENTITIES
12.2.2
-
APPS.XLA_UPGRADE_PUB dependencies on XLA_TRANSACTION_ENTITIES
12.2.2
-
APPS.XLA_THIRD_PARTY_MERGE dependencies on XLA_TRANSACTION_ENTITIES
12.1.1
-
APPS.FII_AP_INV_LINES_F_C dependencies on XLA_TRANSACTION_ENTITIES
12.1.1
-
APPS.XLA_TB_REPORT_PVT dependencies on XLA_TRANSACTION_ENTITIES
12.1.1
-
APPS.XLA_JOURNAL_ENTRIES_PKG dependencies on XLA_TRANSACTION_ENTITIES
12.1.1
-
APPS.XLA_TRANSFER_PKG dependencies on XLA_TRANSACTION_ENTITIES
12.1.1
-
APPS.XLA_UPG_VERIFICATION_PUB dependencies on XLA_TRANSACTION_ENTITIES
12.1.1
-
APPS.IGC_CBC_GL_FC_PKG dependencies on XLA_TRANSACTION_ENTITIES
12.1.1
-
APPS.PSA_AP_BC_PVT dependencies on XLA_TRANSACTION_ENTITIES
12.1.1
-
APPS.CST_RECEIPTACCRUALPEREND_PVT dependencies on XLA_TRANSACTION_ENTITIES
12.1.1
-
APPS.AP_APXTRSWP_XMLP_PKG dependencies on XLA_TRANSACTION_ENTITIES
12.1.1
-
APPS.FA_DELETION_PUB dependencies on XLA_TRANSACTION_ENTITIES
12.2.2
-
APPS.XLA_UPG_VERIFICATION_PUB dependencies on XLA_TRANSACTION_ENTITIES
12.2.2
-
APPS.IGC_CBC_GL_FC_PKG dependencies on XLA_TRANSACTION_ENTITIES
12.2.2
-
APPS.JL_CO_GL_NIT_MANAGEMENT dependencies on XLA_TRANSACTION_ENTITIES
12.2.2
-
APPS.JA_CN_AR_RBD_EXPORT_PKG dependencies on XLA_TRANSACTION_ENTITIES
12.2.2
-
APPS.PSA_UTILS dependencies on XLA_TRANSACTION_ENTITIES
12.2.2
-
APPS.AP_ACCTG_DATA_FIX_PKG dependencies on XLA_TRANSACTION_ENTITIES
12.2.2
-
APPS.XLA_FSAH_INT_PVT dependencies on XLA_TRANSACTION_ENTITIES
12.2.2
-
APPS.ARP_PROCESS_HEADER dependencies on XLA_TRANSACTION_ENTITIES
12.2.2
-
APPS.FV_GTAS_TRX_REGISTER dependencies on XLA_TRANSACTION_ENTITIES
12.2.2
-
APPS.FUN_RECON_RPT_PKG dependencies on XLA_TRANSACTION_ENTITIES
12.2.2
-
APPS.JA_CN_AP_PBD_EXPORT_PKG dependencies on XLA_TRANSACTION_ENTITIES
12.2.2
-
APPS.CST_SLA_UPDATE_PKG dependencies on XLA_TRANSACTION_ENTITIES
12.2.2
-
APPS.AP_TURNOVER_RPT_PKG dependencies on XLA_TRANSACTION_ENTITIES
12.2.2
-
APPS.OKL_REPORT_GENERATOR_PVT dependencies on XLA_TRANSACTION_ENTITIES
12.2.2
-
APPS.JE_ZZ_AUDIT_AP_PKG dependencies on XLA_TRANSACTION_ENTITIES
12.2.2
-
APPS.JA_CN_CFS_CLT_SLA_PKG dependencies on XLA_TRANSACTION_ENTITIES
12.1.1
-
APPS.FA_ASSET_TRACE_PKG dependencies on XLA_TRANSACTION_ENTITIES
12.1.1