Search Results txn_reason_context_code
Overview
APPS.GMF_XLA_TXN_REASONS_V is a reporting view in the Oracle E-Business Suite (documented for 12.1.1 and 12.2.2) that exposes transaction reason codes for use by the Oracle Subledger Accounting (XLA) and Process Manufacturing (GMF) transaction accounting engines. The view presents reason information drawn from inventory transaction reasons so that the accounting program can derive and populate the "Accounting Reason" descriptive flexfield and associated context on subledger journal entries. In practice, the view functions as a naming-standard adapter: the underlying inventory table stores generic columns, while this view aliases each one with a txn_reason_ prefix so that the XLA mapping engine can bind the columns reliably when constructing transaction reason references.
The object is read-only and is intended for query and integration use rather than direct maintenance. Records are maintained in the underlying inventory transaction reasons form, and the view simply surfaces them to the accounting layer.
Underlying Base Objects
The view is defined over a single base object, MTL_TRANSACTION_REASONS, which is referenced as a synonym in the APPS schema. The definition is a straight projection with column renaming and no joins, aggregations, or filter predicates:
- Base table: MTL_TRANSACTION_REASONS — the inventory transaction reason repository.
- Owner: APPS.
- Referenced object type: SYNONYM.
- Relationship: one-to-one row mapping; every row in the base table appears once in the view.
Because there is no filtering, the row count and primary key (REASON_ID) are identical between the view and the table.
Key Columns
- REASON_ID — primary identifier of the transaction reason.
- TXN_REASON_NAME — user-facing name of the reason (from REASON_NAME).
- TXN_REASON_DESCRIPTION — description text of the reason.
- TXN_REASON_TYPE — code classifying the reason type.
- TXN_REASON_TYPE_DISPLAY — display form of the reason type.
- TXN_REASON_CONTEXT_CODE — maps to the base column REASON_CONTEXT_CODE; this is the column most often associated with the search term "txn_reason_context_code". It identifies the descriptive flexfield context that qualifies the reason.
- TXN_REASON_ATTRIBUTE_CATEGORY — the DFF context category of the reason.
- TXN_REASON_ATTRIBUTE1 … TXN_REASON_ATTRIBUTE15 — the fifteen descriptive flexfield attribute segments carrying reason-specific detail.
Users searching for txn_reason_context_code should note that the view column is named TXN_REASON_CONTEXT_CODE and is sourced from REASON_CONTEXT_CODE in the base table; there is no column literally named txn_reason_context_code in the base table, only the prefixed form in the view.
Common Use Cases and Queries
Typical uses include validating accounting reason mappings, reporting on reason usage, and joining the view to transaction tables for reconciliation. A simple listing:
- Enumerate all reasons for a given context code.
- Extract the reason name and description for reporting.
- Populate lookup or integration extracts for downstream systems.
Sample SQL:
SELECT reason_id, txn_reason_name, txn_reason_context_code
FROM apps.gmf_xla_txn_reasons_v
WHERE txn_reason_context_code = :p_context_code;
ORDER BY txn_reason_name;
And a join scenario:
SELECT g.txn_reason_name, g.txn_reason_context_code, t.transaction_id
FROM apps.gmf_xla_txn_reasons_v g,
apps.mtl_material_transactions t
WHERE g.reason_id = t.reason_id;
Because the view is a direct projection with no transformations, it can be queried without performance penalty relative to the base table, and it is safe for concurrent reporting access.
-
VIEW: APPS.GMF_XLA_TXN_REASONS_V
12.1.1
-
VIEW: APPS.CST_XLA_TXN_REASON_REF_V
12.1.1
-
View: CST_XLA_TXN_REASON_REF_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_XLA_TXN_REASON_REF_V, object_name:CST_XLA_TXN_REASON_REF_V, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.CST_XLA_TXN_REASON_REF_V ,
-
View: CST_XLA_TXN_REASON_REF_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_XLA_TXN_REASON_REF_V, object_name:CST_XLA_TXN_REASON_REF_V, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.CST_XLA_TXN_REASON_REF_V ,
-
View: GMF_XLA_TXN_REASONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMF.GMF_XLA_TXN_REASONS_V, object_name:GMF_XLA_TXN_REASONS_V, status:VALID, product: GMF - Process Manufacturing Financials , description: View for SLA ADR sources from Inventory Transactions Reasons , implementation_dba_data: APPS.GMF_XLA_TXN_REASONS_V ,
-
View: GMF_XLA_TXN_REASONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMF.GMF_XLA_TXN_REASONS_V, object_name:GMF_XLA_TXN_REASONS_V, status:VALID, product: GMF - Process Manufacturing Financials , description: View for SLA ADR sources from Inventory Transactions Reasons , implementation_dba_data: APPS.GMF_XLA_TXN_REASONS_V ,
-
VIEW: APPS.CST_XLA_TXN_REASON_REF_V
12.2.2
-
VIEW: APPS.GMF_XLA_TXN_REASONS_V
12.2.2
-
VIEW: APPS.CST_XLA_TXN_REASON_REF_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_XLA_TXN_REASON_REF_V, object_name:CST_XLA_TXN_REASON_REF_V, status:VALID,
-
VIEW: APPS.CST_XLA_TXN_REASON_REF_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_XLA_TXN_REASON_REF_V, object_name:CST_XLA_TXN_REASON_REF_V, status:VALID,
-
VIEW: APPS.GMF_XLA_TXN_REASONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMF.GMF_XLA_TXN_REASONS_V, object_name:GMF_XLA_TXN_REASONS_V, status:VALID,
-
VIEW: APPS.GMF_XLA_TXN_REASONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMF.GMF_XLA_TXN_REASONS_V, object_name:GMF_XLA_TXN_REASONS_V, status:VALID,
-
eTRM - GMF Tables and Views
12.1.1
description: Defines Third-Party software which has a supported interface to OPM. ,
-
eTRM - GMF Tables and Views
12.2.2
description: Defines Third-Party software which has a supported interface to OPM. ,
-
eTRM - BOM Tables and Views
12.2.2
description: Table to map wip transactions to their corresponding event types. ,
-
eTRM - BOM Tables and Views
12.1.1
description: Table to map wip transactions to their corresponding event types. ,