Search Results gmf_xla_extract_headers
Overview
GMF_XLA_EXTRACT_HEADERS is the Subledger Accounting (SLA) extract headers table owned by the GMF schema in Oracle E-Business Suite, associated with the Process Manufacturing Financials product family. It is classified as VALID in the ETRM repository and contains 53 documented columns in release 12.2.2.
The table serves as the staging and extraction repository for accounting-relevant transaction data originating from process inventory organizations. When process manufacturing transactions occur, the necessary accounting attributes are captured and stored in this table. When the SLA accounting program executes, this data is consumed to create subledger journal entries and transfer them to the General Ledger. The table therefore acts as the bridge between high-volume process manufacturing inventory activity and the corporate accounting engine.
From a Data Vault modeling perspective (heuristic, mined from the FK structure), this object is classified as standalone. This suggests it behaves as a self-contained hub-like entity with its own surrogate key, rather than sitting strictly within a link or satellite construct. Modelers should treat this classification as a suggestion; the table carries both descriptive attributes and foreign-key-style references to legal entities and transaction sources, so it could also be modeled as a hub with dependent satellites depending on enterprise requirements.
Key Information Stored
The surrogate primary key is HEADER_ID, enforced by the unique index GMF_XLA_EXTRACT_HEADERS_U1. A second unique index, GMF_XLA_EXTRACT_HEADERS_U2, defines a composite business-key candidate spanning LEGAL_ENTITY_ID, LEDGER_ID, VALUATION_COST_TYPE_ID, TRANSACTION_ID, EVENT_CLASS_CODE, and EVENT_TYPE_CODE — reflecting the accounting-event grain of each extract row.
- REFERENCE_NO and EVENT_ID — correlation identifiers linking the extract row to the originating transaction and accounting event.
- ENTITY_CODE, EVENT_CLASS_CODE, EVENT_TYPE_CODE — the accounting event classification triad that drives journal line generation rules.
- LEGAL_ENTITY_ID and LEDGER_ID — the accounting context; LEGAL_ENTITY_ID references FV_LEGAL_ENTITIES.
- TRANSACTION_ID, TRANSACTION_DATE, TRANSACTION_QUANTITY, TRANSACTION_UOM — the underlying inventory transaction facts.
- INVENTORY_ITEM_ID, ORGANIZATION_ID, LOT_NUMBER, ITEM_REVISION — process manufacturing item and lot identification.
- VALUATION_COST_TYPE_ID and VALUATION_COST_TYPE — cost method context for the valuation.
- TRANSACTION_VALUE, TRANSACTION_VALUE_RAW, TRANSACTION_CURRENCY — monetary amounts and currency context.
- TRANSACTION_SOURCE_TYPE_ID — references MTL_TXN_SOURCE_TYPES; identifies the source system of the transaction.
- ACCOUNTED_FLAG and ACTUAL_POSTING_DATE — accounting status and posting date used by the SLA program.
- CURRENCY_CODE, CURRENCY_CONVERSION_RATE, CURRENCY_CONVERSION_DATE, CURRENCY_CONVERSION_TYPE — currency conversion attributes.
Common Use Cases and Queries
Typical usage centers on reconciliation, SLA diagnostics, and cost accounting analysis. Analysts query this table to verify that inventory transactions have been extracted and accounted, to trace valuation discrepancies, and to report transaction values by legal entity, ledger, or organization.
A representative query pattern isolates unaccounted extracts for a given ledger:
SELECT header_id, transaction_id, event_class_code, event_type_code,
transaction_value, transaction_currency, accounted_flag
FROM gmf.gmf_xla_extract_headers
WHERE ledger_id = :ledger_id
AND NVL(accounted_flag,'N') = 'N';
Aggregation by event classification is commonly used to compare extract totals against SLA journal balances:
SELECT event_class_code, event_type_code,
COUNT(*) rows_cnt, SUM(transaction_value) total_value
FROM gmf.gmf_xla_extract_headers
WHERE transaction_date BETWEEN :from_date AND :to_date
GROUP BY event_class_code, event_type_code;
Related Objects
The FK metadata documents two direct references, supplemented by the broader SLA integration landscape:
- FV_LEGAL_ENTITIES — joined on LEGAL_ENTITY_ID to resolve legal entity attributes for reporting.
- MTL_TXN_SOURCE_TYPES — joined on TRANSACTION_SOURCE_TYPE_ID to identify the source of each transaction.
- GMF_XLA_EXTRACT_LINES — the companion lines table that stores the individual accounting line distributions generated from each header.
- XLA_EVENTS — the SLA event registry; EVENT_ID in the header correlates to the accounting event created for the transaction.
- XLA_AE_HEADERS and XLA_AE_LINES — the downstream SLA journal header and line tables populated from extract data.
- MTL_MATERIAL_TRANSACTIONS — the inventory transaction source supplying TRANSACTION_ID and related item, lot, and quantity facts.
- GL_LEDGERS — joined on LEDGER_ID to obtain ledger name, chart of accounts, and currency context.
Together these objects form the end-to-end path from process inventory transaction through SLA extract to final general ledger posting.
-
Table: GMF_XLA_EXTRACT_HEADERS
12.1.1
owner:GMF, object_type:TABLE, fnd_design_data:GMF.GMF_XLA_EXTRACT_HEADERS, object_name:GMF_XLA_EXTRACT_HEADERS, status:VALID, product: GMF - Process Manufacturing Financials , description: This table is the SLA Extract Headers table. The transactions for process inventory organizations are processed and all the necessary data for accounting are stored in this table. When the SLA accounting program is run data from this tabl , implementation_dba_data: GMF.GMF_XLA_EXTRACT_HEADERS ,
-
Table: GMF_XLA_EXTRACT_HEADERS
12.2.2
owner:GMF, object_type:TABLE, fnd_design_data:GMF.GMF_XLA_EXTRACT_HEADERS, object_name:GMF_XLA_EXTRACT_HEADERS, status:VALID, product: GMF - Process Manufacturing Financials , description: This table is the SLA Extract Headers table. The transactions for process inventory organizations are processed and all the necessary data for accounting are stored in this table. When the SLA accounting program is run data from this tabl , implementation_dba_data: GMF.GMF_XLA_EXTRACT_HEADERS ,
-
APPS.XLA_00555_AAD_S_000001_PKG SQL Statements
12.2.2
-
APPS.XLA_00555_AAD_S_000001_PKG SQL Statements
12.1.1
-
SYNONYM: APPS.GMF_XLA_EXTRACT_HEADERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:GMF_XLA_EXTRACT_HEADERS, status:VALID,
-
VIEW: APPS.GMF_XLA_PM_TXNS_V
12.2.2
-
VIEW: APPS.GMF_XLA_SO_TXNS_V
12.1.1
-
VIEW: GMF.GMF_XLA_EXTRACT_HEADERS#
12.2.2
owner:GMF, object_type:VIEW, object_name:GMF_XLA_EXTRACT_HEADERS#, status:VALID,
-
VIEW: APPS.GMF_XLA_RCV_TXNS_V
12.2.2
-
SYNONYM: APPS.GMF_XLA_EXTRACT_HEADERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:GMF_XLA_EXTRACT_HEADERS, status:VALID,
-
VIEW: APPS.GMF_XLA_RCV_TXNS_V
12.1.1
-
View: GMF_XLA_SO_TXNS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMF.GMF_XLA_SO_TXNS_V, object_name:GMF_XLA_SO_TXNS_V, status:VALID, product: GMF - Process Manufacturing Financials , implementation_dba_data: APPS.GMF_XLA_SO_TXNS_V ,
-
View: GMF_XLA_RCV_TXNS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMF.GMF_XLA_RCV_TXNS_V, object_name:GMF_XLA_RCV_TXNS_V, status:VALID, product: GMF - Process Manufacturing Financials , implementation_dba_data: APPS.GMF_XLA_RCV_TXNS_V ,
-
VIEW: APPS.GMF_XLA_SO_TXNS_V
12.2.2
-
View: GMF_XLA_RCV_TXNS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMF.GMF_XLA_RCV_TXNS_V, object_name:GMF_XLA_RCV_TXNS_V, status:VALID, product: GMF - Process Manufacturing Financials , description: View for SLA ADR sources from Receipt Transactions , implementation_dba_data: APPS.GMF_XLA_RCV_TXNS_V ,
-
VIEW: APPS.GMF_XLA_COST_RVAL_V
12.2.2
-
VIEW: APPS.GMF_XLA_LC_ADJS_V
12.2.2
-
VIEW: APPS.GMF_XLA_COST_RVAL_V
12.1.1
-
View: GMF_XLA_SO_TXNS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMF.GMF_XLA_SO_TXNS_V, object_name:GMF_XLA_SO_TXNS_V, status:VALID, product: GMF - Process Manufacturing Financials , description: View for SLA ADR sources from Sales Order Transactions , implementation_dba_data: APPS.GMF_XLA_SO_TXNS_V ,
-
VIEW: APPS.GMF_XLA_LOTCOST_ADJS_V
12.2.2
-
VIEW: APPS.GMF_XLA_ACTCOST_ADJS_V
12.1.1
-
VIEW: APPS.GMF_XLA_ACTCOST_ADJS_V
12.2.2
-
VIEW: APPS.GMF_XLA_PM_TXNS_V
12.1.1
-
VIEW: APPS.GMF_XLA_PM_RSRC_TXNS_V
12.2.2
-
VIEW: APPS.GMF_XLA_LOTCOST_ADJS_V
12.1.1
-
VIEW: APPS.GMF_XLA_PAYABLES_INVOICES_V
12.2.2
-
VIEW: APPS.GMF_XLA_PAYABLES_INVOICES_V
12.1.1
-
Table: GMF_XLA_EXTRACT_HEADERS_GT
12.1.1
owner:GMF, object_type:TABLE, fnd_design_data:GMF.GMF_XLA_EXTRACT_HEADERS_GT, object_name:GMF_XLA_EXTRACT_HEADERS_GT, status:VALID, product: GMF - Process Manufacturing Financials , description: Stores extract headers temporarily in a Session to create events in SLA. Once events get created, rows from this table are inserted into GMF_XLA_EXTRACT_HEADERS table. , implementation_dba_data: GMF.GMF_XLA_EXTRACT_HEADERS_GT ,
-
Table: GMF_XLA_EXTRACT_HEADERS_GT
12.2.2
owner:GMF, object_type:TABLE, fnd_design_data:GMF.GMF_XLA_EXTRACT_HEADERS_GT, object_name:GMF_XLA_EXTRACT_HEADERS_GT, status:VALID, product: GMF - Process Manufacturing Financials , description: Stores extract headers temporarily in a Session to create events in SLA. Once events get created, rows from this table are inserted into GMF_XLA_EXTRACT_HEADERS table. , implementation_dba_data: GMF.GMF_XLA_EXTRACT_HEADERS_GT ,
-
VIEW: APPS.GMF_XLA_INVENTORY_TXNS_V
12.1.1
-
VIEW: APPS.GMF_XLA_PM_RSRC_TXNS_V
12.1.1
-
VIEW: GMF.GMF_XLA_EXTRACT_HEADERS#
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
-
View: GMF_XLA_PM_TXNS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMF.GMF_XLA_PM_TXNS_V, object_name:GMF_XLA_PM_TXNS_V, status:VALID, product: GMF - Process Manufacturing Financials , description: View for SLA ADR sources from Batch Transactions , implementation_dba_data: APPS.GMF_XLA_PM_TXNS_V ,
-
PACKAGE: APPS.GMF_SUBLED_REP_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:GMF_SUBLED_REP_PKG, status:VALID,
-
PACKAGE: APPS.GMF_SUBLED_REP_PKG
12.2.2
owner:APPS, object_type:PACKAGE, object_name:GMF_SUBLED_REP_PKG, status:VALID,
-
VIEW: APPS.GMF_XLA_INVENTORY_TXNS_V
12.2.2
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.GMF_SUBLED_REP_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GMF_SUBLED_REP_PKG, status:VALID,
-
PACKAGE BODY: APPS.GMF_SUBLED_REP_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMF_SUBLED_REP_PKG, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
APPS.GMF_XLA_PKG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.GMF_VIB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMF_VIB, status:VALID,
-
PACKAGE BODY: APPS.GMF_XLA_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GMF_XLA_PKG, status:VALID,
-
PACKAGE BODY: APPS.GMF_ALLOC_PROC
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMF_ALLOC_PROC, status:VALID,
-
APPS.GMF_XLA_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.XLA_00555_AAD_S_000001_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:XLA_00555_AAD_S_000001_PKG, status:VALID,
-
View: GMF_XLA_COST_RVAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMF.GMF_XLA_COST_RVAL_V, object_name:GMF_XLA_COST_RVAL_V, status:VALID, product: GMF - Process Manufacturing Financials , implementation_dba_data: APPS.GMF_XLA_COST_RVAL_V ,