Search Results freight_code_tl
Overview
APPS.WSH_FREIGHT_CARRIERS_ACTIVE_V is a reporting and integration view in the Oracle E-Business Suite Shipping (WSH) module. Its purpose is to expose the set of freight carriers currently active for a given organization, filtering out carriers whose disable date has already passed. The view is defined in Oracle EBS 12.1.1 and 12.2.2 with identical column semantics, and it is widely referenced by shipping, order management, and logistics reporting routines that need a reliable, date-aware list of carriers.
The view derives its name from the term "freight carrier," which in EBS corresponds to a freight code maintained in the ORG_FREIGHT table. The reserved word ACTIVE in the object name signals that the view performs a validity check against the disable date. Because the filter uses TRUNC(SYSDATE), a carrier is considered active on the day it is disabled only if the disable date has not yet passed at the day level.
Underlying Base Objects
The documented base object for this view is ORG_FREIGHT, accessed via a synonym in the APPS schema. ORG_FREIGHT is the Shipping module's master table for freight codes and carrier definitions, organized by inventory organization. Each row represents a freight code belonging to one organization, with attributes including the translatable carrier name (FREIGHT_CODE_TL), a description, an enable/disable date pair, and the owning ORGANIZATION_ID.
The view performs a single-table selection with no joins, so its performance profile mirrors that of a filtered query on ORG_FREIGHT. The NVL expression in the first column indicates that DESCRIPTION is a denormalized human-readable label while FREIGHT_CODE_TL is the translatable carrier code value.
Key Columns
- FREIGHT_CARRIER — A computed column, defined as
NVL(DESCRIPTION, FREIGHT_CODE_TL). It returns the description if present, otherwise falls back to the translatable freight code. This is the primary column downstream reports typically display. - FREIGHT_CODE_TL — The translatable freight code / carrier name as stored in ORG_FREIGHT. This is the value users search for when they query "freight_code_tl."
- DESCRIPTION — An optional descriptive text for the carrier, which may be null.
- ORGANIZATION_ID — The inventory organization to which the freight carrier record belongs. It is essential for multi-org filtered queries.
Common Use Cases and Queries
The view is commonly used in shipping execution, carrier selection lists, and integration extracts that must exclude retired carriers. A typical query filtered by organization is:
SELECT freight_carrier, freight_code_tl, description, organization_id FROM apps.wsh_freight_carriers_active_v WHERE organization_id = :org_id ORDER BY freight_carrier;
Because the view does not itself filter by organization, callers must supply the ORGANIZATION_ID predicate when restricting output to a single operating unit's inventory organization. A lookup by code is also common:
SELECT freight_carrier, organization_id FROM apps.wsh_freight_carriers_active_v WHERE freight_code_tl = :code;
Integration teams frequently leverage the view to populate carrier picklists in custom forms or to drive carrier validation before freight cost calculation. Note that the view filters on TRUNC(SYSDATE) < TRUNC(NVL(DISABLE_DATE, SYSDATE+1)), so a carrier with a null disable date is treated as active indefinitely, and a carrier disabled today may still appear depending on time-of-day truncation. Query authors should account for this behavior when reconciling the view against ORG_FREIGHT directly.
-
VIEW: APPS.WSH_FREIGHT_CARRIERS_ACTIVE_V
12.1.1
-
VIEW: APPS.WSH_FREIGHT_CARRIERS_ACTIVE_V
12.2.2
-
View: WSH_FREIGHT_CARRIERS_ACTIVE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_FREIGHT_CARRIERS_ACTIVE_V, object_name:WSH_FREIGHT_CARRIERS_ACTIVE_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_FREIGHT_CARRIERS_ACTIVE_V ,
-
View: WSH_FREIGHT_CARRIERS_ACTIVE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_FREIGHT_CARRIERS_ACTIVE_V, object_name:WSH_FREIGHT_CARRIERS_ACTIVE_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_FREIGHT_CARRIERS_ACTIVE_V ,
-
VIEW: APPS.SO_FREIGHT_CARRIERS_ACTIVE_V
12.2.2
-
VIEW: INV.ORG_FREIGHT_TL#
12.2.2
-
VIEW: APPS.SO_FREIGHT_CARRIERS_ACTIVE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_FREIGHT_CARRIERS_ACTIVE_V, object_name:SO_FREIGHT_CARRIERS_ACTIVE_V, status:VALID,
-
View: SO_FREIGHT_CARRIERS_ACTIVE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_FREIGHT_CARRIERS_ACTIVE_V, object_name:SO_FREIGHT_CARRIERS_ACTIVE_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_FREIGHT_CARRIERS_ACTIVE_V ,
-
View: SO_FREIGHT_CARRIERS_ACTIVE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_FREIGHT_CARRIERS_ACTIVE_V, object_name:SO_FREIGHT_CARRIERS_ACTIVE_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_FREIGHT_CARRIERS_ACTIVE_V ,
-
VIEW: APPS.SO_FREIGHT_CARRIERS_ACTIVE_V
12.1.1
-
VIEW: APPS.WSH_FREIGHT_CARRIERS_ACTIVE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_FREIGHT_CARRIERS_ACTIVE_V, object_name:WSH_FREIGHT_CARRIERS_ACTIVE_V, status:VALID,
-
VIEW: APPS.SO_FREIGHT_CARRIERS_ACTIVE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_FREIGHT_CARRIERS_ACTIVE_V, object_name:SO_FREIGHT_CARRIERS_ACTIVE_V, status:VALID,
-
VIEW: APPS.WSH_FREIGHT_CARRIERS_ACTIVE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_FREIGHT_CARRIERS_ACTIVE_V, object_name:WSH_FREIGHT_CARRIERS_ACTIVE_V, status:VALID,
-
VIEW: APPS.WSH_CARRIER_SHIP_METHODS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_CARRIER_SHIP_METHODS_V, object_name:WSH_CARRIER_SHIP_METHODS_V, status:VALID,
-
VIEW: APPS.WSH_CARRIER_SHIP_METHODS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_CARRIER_SHIP_METHODS_V, object_name:WSH_CARRIER_SHIP_METHODS_V, status:VALID,
-
VIEW: APPS.WSHFV_FREIGHT_COSTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSHFV_FREIGHT_COSTS, object_name:WSHFV_FREIGHT_COSTS, status:VALID,
-
APPS.ORG_FREIGHT_TL_PKG SQL Statements
12.1.1
-
APPS.ORG_FREIGHT_TL_PKG SQL Statements
12.2.2
-
VIEW: INV.ORG_FREIGHT_TL#
12.2.2
owner:INV, object_type:VIEW, object_name:ORG_FREIGHT_TL#, status:VALID,
-
VIEW: APPS.WSHFV_FREIGHT_COSTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSHFV_FREIGHT_COSTS, object_name:WSHFV_FREIGHT_COSTS, status:VALID,
-
View: WSH_CARRIER_SHIP_METHODS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_CARRIER_SHIP_METHODS_V, object_name:WSH_CARRIER_SHIP_METHODS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_CARRIER_SHIP_METHODS_V ,
-
View: WSH_CARRIER_SHIP_METHODS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_CARRIER_SHIP_METHODS_V, object_name:WSH_CARRIER_SHIP_METHODS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_CARRIER_SHIP_METHODS_V ,
-
View: WSHFV_FREIGHT_COSTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSHFV_FREIGHT_COSTS, object_name:WSHFV_FREIGHT_COSTS, status:VALID, product: WSH - Shipping Execution , description: Full BIS Business View for Freight Costs. , implementation_dba_data: APPS.WSHFV_FREIGHT_COSTS ,
-
View: ORG_FREIGHT_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.ORG_FREIGHT_VL, object_name:ORG_FREIGHT_VL, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.ORG_FREIGHT_VL ,
-
VIEW: APPS.ORG_FREIGHT_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.ORG_FREIGHT_VL, object_name:ORG_FREIGHT_VL, status:VALID,
-
TABLE: INV.ORG_FREIGHT_TL
12.1.1
owner:INV, object_type:TABLE, fnd_design_data:INV.ORG_FREIGHT_TL, object_name:ORG_FREIGHT_TL, status:VALID,
-
VIEW: APPS.ORG_FREIGHT_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.ORG_FREIGHT_VL, object_name:ORG_FREIGHT_VL, status:VALID,
-
View: WSHFV_FREIGHT_COSTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSHFV_FREIGHT_COSTS, object_name:WSHFV_FREIGHT_COSTS, status:VALID, product: WSH - Shipping Execution , description: Full BIS Business View for Freight Costs. , implementation_dba_data: APPS.WSHFV_FREIGHT_COSTS ,
-
View: ORG_FREIGHT_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.ORG_FREIGHT_VL, object_name:ORG_FREIGHT_VL, status:VALID, product: INV - Inventory , description: This view contains information about theavailable Freight Carrier in the language under which Oracle Applicationsis currently running at your site. , implementation_dba_data: APPS.ORG_FREIGHT_VL ,
-
TABLE: INV.ORG_FREIGHT_TL
12.2.2
owner:INV, object_type:TABLE, fnd_design_data:INV.ORG_FREIGHT_TL, object_name:ORG_FREIGHT_TL, status:VALID,
-
PACKAGE BODY: APPS.ORG_FREIGHT_TL_PKG
12.2.2
-
PACKAGE BODY: APPS.ORG_FREIGHT_TL_PKG
12.1.1
-
APPS.ORG_FREIGHT_TL_PKG dependencies on ORG_FREIGHT_TL
12.1.1
-
APPS.ORG_FREIGHT_TL_PKG dependencies on ORG_FREIGHT_TL
12.2.2
-
APPS.PO_EMAIL_GENERATE SQL Statements
12.1.1
-
APPS.PO_EMAIL_GENERATE dependencies on ORG_FREIGHT_VL
12.1.1
-
APPS.PO_EMAIL_GENERATE dependencies on ORG_FREIGHT_VL
12.2.2
-
APPS.PO_EMAIL_GENERATE dependencies on PO_CORE_S
12.1.1
-
APPS.PO_EMAIL_GENERATE dependencies on PO_CORE_S
12.2.2
-
APPS.PO_EMAIL_GENERATE SQL Statements
12.2.2
-
PACKAGE BODY: APPS.PO_EMAIL_GENERATE
12.1.1
-
PACKAGE BODY: APPS.PO_EMAIL_GENERATE
12.2.2
-
eTRM - WSH Tables and Views
12.1.1
description: Stores hierarchy for zones. Each region component of a zone has a record in this table. ,
-
eTRM - WSH Tables and Views
12.2.2
description: Stores hierarchy for zones. Each region component of a zone has a record in this table. ,
-
eTRM - OE Tables and Views
12.1.1
description: Temporary table ,
-
eTRM - OE Tables and Views
12.2.2
description: Temporary table ,
-
eTRM - INV Tables and Views
12.1.1
-
eTRM - INV Tables and Views
12.2.2