Search Results h_currency_code
Overview
CST_XLA_AWO_HEADERS_V is an APPS-owned view in Oracle E-Business Suite that exposes Work in Process write-off accounting header information in the Subledger Accounting (XLA) event format. It belongs primarily to the BOM – Bills of Material product family and is used within the Cost Management write-off flow, where manufacturing and inventory write-off transactions are accounted through Subledger Accounting and ultimately transferred to General Ledger. The view's central purpose is to present one row per accounting event header, joining the write-off record to its corresponding XLA event so that downstream accounting, transfer-to-GL, and reporting processes can consume consistent event-level data. It surfaces critical monetary and currency attributes — most notably the value exposed as H_CURRENCY_CODE (mapped from CWO.CURRENCY_CODE) — alongside conversion date, rate, and type, enabling multi-currency write-off accounting.
Underlying Base Objects
The view is defined over the following documented base objects in the APPS schema:
- CST_WRITE_OFFS (aliased CWO) — the fact table of write-off transactions, holding amounts, accounts, item, vendor, currency, and date attributes.
- XLA_EVENTS_GT (aliased XEG) — the XLA events global temporary table, filtered to ENTITY_CODE = 'WO_ACCOUNTING_EVENTS'. It supplies the XLA EVENT_ID and LEDGER_ID.
- GL_LEDGERS (aliased GL) — the ledger definition, providing the functional currency code (FUNC_CURRENCY_CODE).
- FND_CURRENCIES (aliased FC) — currency precision and MINIMUM_ACCOUNTABLE_UNIT, used to round entered amounts.
The join logic links CWO.WRITE_OFF_ID to XEG.SOURCE_ID_INT_1, GL.LEDGER_ID to XEG.LEDGER_ID, and FC.CURRENCY_CODE to GL.CURRENCY_CODE. The view therefore sits at the intersection of cost write-off data and the Subledger Accounting event model.
Key Columns
- EVENT_ID — XLA event identifier from XLA_EVENTS_GT.
- WRITE_OFF_ID — primary identifier of the underlying CST_WRITE_OFFS record.
- H_CURRENCY_CODE — the transaction/entered currency code (CWO.CURRENCY_CODE); the "H_" prefix denotes the header-level currency.
- H_CURRENCY_CONVERSION_DATE / _RATE / _TYPE — the conversion attributes used to translate entered amounts into the ledger currency.
- H_ENTERED_AMOUNT / H_ACCOUNTED_AMOUNT — the entered write-off value and its accounted equivalent (CWO.WRITE_OFF_AMOUNT).
- WO_ERV_AMOUNT / TOTAL_ACCRUAL_AMOUNT — computed amounts reconciling the rounded entered value against the accounted write-off, forming the accrual and exchange-rate-variance components.
- H_LEDGER_ID — the accounting ledger for the event.
- FUNC_CURRENCY_CODE — the ledger's functional currency from GL_LEDGERS.
- DISTRIBUTION_TYPE — literal 'CST_WRITE_OFFS'; TRANSFER_TO_GL_INDICATOR — literal 'Y'.
- Identification columns: INVENTORY_ITEM_ID, VENDOR_ID, PO_DISTRIBUTION_ID, INVOICE_DISTRIBUTION_ID, INVENTORY_TRANSACTION_ID, OPERATING_UNIT_ID, and the various account IDs.
Common Use Cases and Queries
Typical uses include auditing write-off accounting entries, reconciling entered versus accounted amounts across currencies, and feeding custom Subledger Accounting reports. A representative query filtering by the currency column follows:
- List write-offs in a given currency with amounts and ledger context.
SELECT event_id,
write_off_id,
h_currency_code,
h_entered_amount,
h_accounted_amount,
h_ledger_id,
transaction_date
FROM apps.cst_xla_awo_headers_v
WHERE h_currency_code = 'USD';
- Ideal for currency-conversion reconciliation, using the conversion rate and type columns joined to the functional currency.
- Useful for extracting XLA event headers for a specific item or vendor when reconciling manufacturing write-offs against GL balances.
Because the view depends on XLA_EVENTS_GT, queries should run in a context where the XLA event population is active, ensuring the temporary event data is available for the join.
-
APPS.AP_APXBCRPT_XMLP_PKG SQL Statements
12.1.1
-
APPS.AP_APXBCRPT_XMLP_PKG SQL Statements
12.2.2
-
View: CST_XLA_AWO_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_XLA_AWO_HEADERS_V, object_name:CST_XLA_AWO_HEADERS_V, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.CST_XLA_AWO_HEADERS_V ,
-
VIEW: APPS.CST_XLA_AWO_HEADERS_V
12.1.1
-
View: CST_XLA_AWO_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_XLA_AWO_HEADERS_V, object_name:CST_XLA_AWO_HEADERS_V, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.CST_XLA_AWO_HEADERS_V ,
-
VIEW: APPS.CST_XLA_AWO_HEADERS_V
12.2.2
-
APPS.GL_GLXJETAX_XMLP_PKG SQL Statements
12.1.1
-
VIEW: APPS.CST_XLA_AWO_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_XLA_AWO_HEADERS_V, object_name:CST_XLA_AWO_HEADERS_V, status:VALID,
-
VIEW: APPS.CST_XLA_AWO_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_XLA_AWO_HEADERS_V, object_name:CST_XLA_AWO_HEADERS_V, status:VALID,
-
APPS.GL_GLXJETAX_XMLP_PKG SQL Statements
12.2.2
-
APPS.JG_RX_IR_PKG SQL Statements
12.2.2
-
APPS.JG_RX_IR_PKG SQL Statements
12.1.1
-
APPS.FARX_RT SQL Statements
12.1.1
-
PACKAGE BODY: APPS.AP_APXBCRPT_XMLP_PKG
12.1.1
-
PACKAGE BODY: APPS.AP_APXBCRPT_XMLP_PKG
12.2.2
-
APPS.FARX_RT SQL Statements
12.2.2
-
PACKAGE: APPS.AP_APXBCRPT_XMLP_PKG
12.1.1
-
PACKAGE: APPS.AP_APXBCRPT_XMLP_PKG
12.2.2
-
APPS.FARX_AL SQL Statements
12.2.2
-
APPS.FARX_AL SQL Statements
12.1.1
-
PACKAGE BODY: APPS.JG_RX_IR_PKG
12.1.1
-
PACKAGE: APPS.GL_GLXJETAX_XMLP_PKG
12.1.1
-
PACKAGE: APPS.GL_GLXJETAX_XMLP_PKG
12.2.2
-
PACKAGE BODY: APPS.JG_RX_IR_PKG
12.2.2
-
PACKAGE BODY: APPS.GL_GLXJETAX_XMLP_PKG
12.2.2
-
APPS.PO_SOURCING_PVT SQL Statements
12.1.1
-
PACKAGE BODY: APPS.GL_GLXJETAX_XMLP_PKG
12.1.1
-
APPS.FA_DEPRN_TAX_REP_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.FARX_RT
12.1.1
-
APPS.FA_DEPRN_TAX_REP_PKG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.FARX_RT
12.2.2
-
PACKAGE BODY: APPS.FARX_AL
12.1.1
-
PACKAGE BODY: APPS.FARX_AL
12.2.2
-
APPS.PO_SOURCING_PVT SQL Statements
12.2.2
-
PACKAGE BODY: APPS.FA_DEPRN_TAX_REP_PKG
12.1.1
-
APPS.FARX_AD SQL Statements
12.1.1
-
APPS.FARX_AD SQL Statements
12.2.2
-
PACKAGE BODY: APPS.FA_DEPRN_TAX_REP_PKG
12.2.2
-
APPS.JG_RX_IR_PKG dependencies on GL_LEDGERS
12.2.2
-
APPS.JG_RX_IR_PKG dependencies on GL_LEDGERS
12.1.1
-
APPS.AP_APXBCRPT_XMLP_PKG dependencies on GL_SETS_OF_BOOKS
12.2.2
-
PACKAGE BODY: APPS.FARX_AD
12.1.1
-
PACKAGE BODY: APPS.FARX_AD
12.2.2
-
APPS.AP_APXBCRPT_XMLP_PKG dependencies on GL_SETS_OF_BOOKS
12.1.1
-
APPS.FA_DEPRN_TAX_REP_PKG dependencies on FA_SYSTEM_CONTROLS
12.1.1
-
APPS.FA_DEPRN_TAX_REP_PKG dependencies on FND_CURRENCY
12.2.2
-
APPS.FA_DEPRN_TAX_REP_PKG dependencies on FA_SYSTEM_CONTROLS
12.2.2
-
APPS.AP_APXBCRPT_XMLP_PKG dependencies on AR_SYSTEM_PARAMETERS
12.1.1
-
APPS.FARX_AD dependencies on GL_SETS_OF_BOOKS
12.1.1
-
APPS.FARX_AD dependencies on GL_SETS_OF_BOOKS
12.2.2