Search Results currency_conversion_type_code
Overview
WSHBV_FREIGHT_CHARGE is an APPS-owned database view in Oracle E-Business Suite, categorized under the Order Entry (OE) product family and marked as Retrofitted in the ETRM repository. The "BV" prefix designates a business view, indicating that its purpose is to present a reporting-friendly, denormalized projection of freight charge data to downstream consumers such as Oracle Shipping Execution, Order Management, and external integration layers. In EBS 12.1.1 and 12.2.2, the view exposes the freight charge records that Oracle Shipping uses to track the cost of transporting a delivery, a container, or an individual picking line. It is read-only in nature and serves as a stable interface layer so that reports, concurrent programs, and interfaces do not depend directly on the transactional base table structure.
The view was retrofitted to align column naming with the wider Oracle logistics data model. Notably, several conversion-related columns are renamed with a CURRENCY_ prefix, which is exactly what makes WSHBV_FREIGHT_CHARGE relevant to a search for currency_conversion_type_code: the base column CONVERSION_TYPE_CODE is surfaced here as CURRENCY_CONVERSION_TYPE_CODE.
Underlying Base Objects
The documented base object is SO_FREIGHT_CHARGES, referenced through a synonym. WSHBV_FREIGHT_CHARGE is therefore a thin, single-table projection: every row in the view maps one-to-one to a row in SO_FREIGHT_CHARGES, and no joins, unions, or aggregations are applied. Because SO_FREIGHT_CHARGES is the Order Management freight charge table, the view inherits all of its transactional semantics, including the standard WHO audit columns (CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN). The APPS synonym grants the view access to the underlying table under the EBS schema conventions.
Key Columns
- FREIGHT_CHARGE_ID — Primary key of the freight charge record.
- DELIVERY_ID, CONTAINER_ID, PICKING_LINE_DETAIL_ID, PICKING_HEADER_ID — Foreign keys identifying the shipping entity the charge applies to.
- FREIGHT_CHARGE_TYPE_ID — References the freight charge type lookup.
- AMOUNT — The freight charge value in the transaction currency.
- CURRENCY_CODE — Currency of the AMOUNT.
- CURRENCY_CONVERSION_DATE — The effective date used for the currency conversion (mapped from CONVERSION_DATE).
- CURRENCY_CONVERSION_RATE — The exchange rate applied (mapped from CONVERSION_RATE).
- CURRENCY_CONVERSION_TYPE_CODE — The conversion type used for the exchange rate, such as Spot, Corporate, or User-defined types held in GL_DAILY_CONVERSION_TYPES (mapped from CONVERSION_TYPE_CODE).
- INVOICE_STATUS — Indicates the invoicing state of the charge.
Common Use Cases and Queries
The view is typically queried when reporting freight costs by delivery or container, when reconciling freight invoicing, and when auditing the currency conversion details applied to freight charges. A user searching for currency_conversion_type_code is usually validating which conversion type was used. For example:
- Freight cost reporting by delivery, joining CURRENCY_CODE and CURRENCY_CONVERSION_RATE to convert AMOUNT to functional currency.
- Audit of conversion types applied to freight charges for a given period.
- Integration extracts feeding freight cost into external freight payment or analytics systems.
SELECT fc.freight_charge_id,
fc.delivery_id,
fc.amount,
fc.currency_code,
fc.currency_conversion_rate,
fc.currency_conversion_type_code,
fc.currency_conversion_date,
fc.invoice_status
FROM apps.wshbv_freight_charge fc
WHERE fc.currency_conversion_type_code IS NOT NULL
ORDER BY fc.delivery_id;
Because the view performs no transformation beyond column aliasing, all filtering and joins must be supplied by the calling query. Standard EBS security and MOAC constraints apply to the invoking responsibility, and the view should be treated as read-only.
-
View: WSHBV_FREIGHT_CHARGE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSHBV_FREIGHT_CHARGE, object_name:WSHBV_FREIGHT_CHARGE, status:VALID, product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: APPS.WSHBV_FREIGHT_CHARGE ,
-
View: WSHBV_FREIGHT_CHARGE
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSHBV_FREIGHT_CHARGE, object_name:WSHBV_FREIGHT_CHARGE, status:VALID, product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: APPS.WSHBV_FREIGHT_CHARGE ,
-
VIEW: APPS.WSHBV_FREIGHT_CHARGE
12.1.1
-
VIEW: APPS.WSHBV_FREIGHT_CHARGE
12.2.2
-
View: WSHFV_FREIGHT_CHARGE
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSHFV_FREIGHT_CHARGE, object_name:WSHFV_FREIGHT_CHARGE, status:VALID, product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: APPS.WSHFV_FREIGHT_CHARGE ,
-
View: WSH_DSNO_ALLOWANCE_CHARGES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DSNO_ALLOWANCE_CHARGES_V, object_name:WSH_DSNO_ALLOWANCE_CHARGES_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DSNO_ALLOWANCE_CHARGES_V ,
-
VIEW: APPS.GLBV_GL_DAILY_EXCHANGE_RATES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GLBV_GL_DAILY_EXCHANGE_RATES, object_name:GLBV_GL_DAILY_EXCHANGE_RATES, status:VALID,
-
VIEW: APPS.GLFV_GL_DAILY_EXCHANGE_RATES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GLFV_GL_DAILY_EXCHANGE_RATES, object_name:GLFV_GL_DAILY_EXCHANGE_RATES, status:VALID,
-
VIEW: APPS.GLBV_GL_CONVERSION_TYPES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GLBV_GL_CONVERSION_TYPES, object_name:GLBV_GL_CONVERSION_TYPES, status:VALID,
-
VIEW: APPS.WSHFV_FREIGHT_CHARGE
12.2.2
-
VIEW: APPS.WSHBV_FREIGHT_CHARGE
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSHBV_FREIGHT_CHARGE, object_name:WSHBV_FREIGHT_CHARGE, status:VALID,
-
VIEW: APPS.WSHFV_FREIGHT_CHARGE
12.1.1
-
View: WSH_DSNO_ALLOWANCE_CHARGES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DSNO_ALLOWANCE_CHARGES_V, object_name:WSH_DSNO_ALLOWANCE_CHARGES_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DSNO_ALLOWANCE_CHARGES_V ,
-
VIEW: APPS.WSHBV_FREIGHT_CHARGE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSHBV_FREIGHT_CHARGE, object_name:WSHBV_FREIGHT_CHARGE, status:VALID,
-
VIEW: APPS.WSH_DSNO_ALLOWANCE_CHARGES_V
12.1.1
-
View: WSHFV_FREIGHT_CHARGE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSHFV_FREIGHT_CHARGE, object_name:WSHFV_FREIGHT_CHARGE, status:VALID, product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: APPS.WSHFV_FREIGHT_CHARGE ,
-
VIEW: APPS.WSHFV_FREIGHT_CHARGE
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSHFV_FREIGHT_CHARGE, object_name:WSHFV_FREIGHT_CHARGE, status:VALID,
-
VIEW: APPS.WSH_DSNO_ALLOWANCE_CHARGES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DSNO_ALLOWANCE_CHARGES_V, object_name:WSH_DSNO_ALLOWANCE_CHARGES_V, status:VALID,
-
VIEW: APPS.GLFV_GL_CONVERSION_TYPES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GLFV_GL_CONVERSION_TYPES, object_name:GLFV_GL_CONVERSION_TYPES, status:VALID,
-
VIEW: APPS.WSHFV_FREIGHT_CHARGE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSHFV_FREIGHT_CHARGE, object_name:WSHFV_FREIGHT_CHARGE, status:VALID,
-
VIEW: APPS.WSH_DSNO_ALLOWANCE_CHARGES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DSNO_ALLOWANCE_CHARGES_V, object_name:WSH_DSNO_ALLOWANCE_CHARGES_V, status:VALID,
-
View: ECE_DSNO_ALLOWANCE_CHARGES_V
12.2.2
product: EC - e-Commerce Gateway , description: No longer used , implementation_dba_data: Not implemented in this database ,
-
View: GLFV_GL_DAILY_EXCHANGE_RATES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GLFV_GL_DAILY_EXCHANGE_RATES, object_name:GLFV_GL_DAILY_EXCHANGE_RATES, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GLFV_GL_DAILY_EXCHANGE_RATES ,
-
View: GLBV_GL_CONVERSION_TYPES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GLBV_GL_CONVERSION_TYPES, object_name:GLBV_GL_CONVERSION_TYPES, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GLBV_GL_CONVERSION_TYPES ,
-
View: GLFV_GL_CONVERSION_TYPES
12.2.2
product: GL - General Ledger , description: General Ledger conversion types are daily conversion rate types defined by users or predefined by Oracle General Ledger. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.WSH_DSNO_ALLOWANCE_CHARGES_V
12.2.2
-
View: GLBV_GL_DAILY_EXCHANGE_RATES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GLBV_GL_DAILY_EXCHANGE_RATES, object_name:GLBV_GL_DAILY_EXCHANGE_RATES, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GLBV_GL_DAILY_EXCHANGE_RATES ,
-
VIEW: APPS.GLFV_ACTUAL_JOURNAL_ENTRIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GLFV_ACTUAL_JOURNAL_ENTRIES, object_name:GLFV_ACTUAL_JOURNAL_ENTRIES, status:VALID,
-
View: ECE_DSNO_ALLOWANCE_CHARGES_V
12.1.1
product: EC - e-Commerce Gateway , description: No longer used , implementation_dba_data: Not implemented in this database ,
-
View: GLBV_GL_DAILY_EXCHANGE_RATES
12.2.2
product: GL - General Ledger , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.GLFV_JOURNAL_ENTRIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GLFV_JOURNAL_ENTRIES, object_name:GLFV_JOURNAL_ENTRIES, status:VALID,
-
View: GLBV_GL_CONVERSION_TYPES
12.2.2
product: GL - General Ledger , implementation_dba_data: Not implemented in this database ,
-
View: GLBV_GLOBAL_INTERCO_SUBS
12.2.2
product: GL - General Ledger , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.GLBV_ACTUAL_JOURNAL_ENTRIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GLBV_ACTUAL_JOURNAL_ENTRIES, object_name:GLBV_ACTUAL_JOURNAL_ENTRIES, status:VALID,
-
View: GLBV_GLOBAL_INTERCO_SUBS
12.1.1
product: GL - General Ledger , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.GLBV_JOURNAL_ENTRIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GLBV_JOURNAL_ENTRIES, object_name:GLBV_JOURNAL_ENTRIES, status:VALID,
-
View: GLFV_GL_DAILY_EXCHANGE_RATES
12.2.2
product: GL - General Ledger , implementation_dba_data: Not implemented in this database ,
-
View: GLFV_GL_CONVERSION_TYPES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GLFV_GL_CONVERSION_TYPES, object_name:GLFV_GL_CONVERSION_TYPES, status:VALID, product: GL - General Ledger , description: General Ledger conversion types are daily conversion rate types defined by users or predefined by Oracle General Ledger. , implementation_dba_data: APPS.GLFV_GL_CONVERSION_TYPES ,
-
View: AXBV_ACCOUNTING_ENTRY_LINES
12.1.1
product: AX - Global Accounting Engine , implementation_dba_data: Not implemented in this database ,
-
View: WSH_DSNO_ORDERS_SPECIFIC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DSNO_ORDERS_SPECIFIC_V, object_name:WSH_DSNO_ORDERS_SPECIFIC_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DSNO_ORDERS_SPECIFIC_V ,
-
View: GLFV_GLOBAL_INTERCO_SUBS
12.1.1
product: GL - General Ledger , implementation_dba_data: Not implemented in this database ,
-
View: WSH_DSNO_ORDERS_SPECIFIC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DSNO_ORDERS_SPECIFIC_V, object_name:WSH_DSNO_ORDERS_SPECIFIC_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DSNO_ORDERS_SPECIFIC_V ,
-
View: GLBV_ACTUAL_JOURNAL_ENTRIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GLBV_ACTUAL_JOURNAL_ENTRIES, object_name:GLBV_ACTUAL_JOURNAL_ENTRIES, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GLBV_ACTUAL_JOURNAL_ENTRIES ,
-
View: AXBV_ACCOUNTING_ENTRY_LINES
12.2.2
product: AX - Global Accounting Engine , implementation_dba_data: Not implemented in this database ,
-
View: GLFV_GLOBAL_INTERCO_SUBS
12.2.2
product: GL - General Ledger , implementation_dba_data: Not implemented in this database ,
-
View: AXFV_ACCOUNTING_ENTRY_LINES
12.2.2
product: AX - Global Accounting Engine , implementation_dba_data: Not implemented in this database ,
-
View: GLBV_JOURNAL_ENTRIES
12.2.2
product: GL - General Ledger , implementation_dba_data: Not implemented in this database ,
-
View: AXFV_ACCOUNTING_ENTRY_LINES
12.1.1
product: AX - Global Accounting Engine , implementation_dba_data: Not implemented in this database ,
-
View: ECE_DSNO_ORDERS_V
12.1.1
product: EC - e-Commerce Gateway , description: No longer used , implementation_dba_data: Not implemented in this database ,
-
View: ECE_DSNO_ORDERS_V
12.2.2
product: EC - e-Commerce Gateway , description: No longer used , implementation_dba_data: Not implemented in this database ,