Search Results so_freight_charge_types
Overview
The SO_FREIGHT_CHARGE_TYPES table is a foundational reference data object within the Oracle E-Business Suite (EBS) Order Entry (OE) module. It functions as a master repository for defining the distinct categories or classifications of freight charges that can be applied to sales orders. This table is critical for standardizing freight cost calculations and ensuring consistent application of shipping-related fees across the order management lifecycle. By centralizing freight charge type definitions, it enables flexible configuration and reporting, allowing organizations to model various shipping cost structures, such as flat fees, weight-based charges, or destination-specific surcharges. Its role is integral to the accurate financial accounting of order fulfillment costs.
Key Information Stored
The table's structure is designed to uniquely identify and describe each freight charge type. The primary technical identifier is the FREIGHT_CHARGE_TYPE_ID column, which serves as the system-generated primary key for all records. The primary business identifier is the NAME column, which holds the unique, user-defined descriptive name for the charge type (e.g., 'STANDARD SHIPPING', 'OVERSIZE FEE', 'EXPRESS DELIVERY'). This column is enforced as a unique key. While the provided ETRM excerpt lists only these core columns, typical implementations of such reference tables often include additional descriptive columns like ENABLED_FLAG, DESCRIPTION, and CREATION_DATE, which facilitate application logic and auditing.
Common Use Cases and Queries
A primary use case is the setup and maintenance of valid freight charge types during system configuration. Administrators populate this table with the organization's specific charge categories. In operational and reporting contexts, the table is frequently joined to transactional data to categorize freight costs. Common SQL patterns include listing all active charge types or analyzing freight revenue by type. For example:
SELECT name, description FROM oe.so_freight_charge_types WHERE enabled_flag = 'Y' ORDER BY name;SELECT fct.name, SUM(sc.charge_amount) FROM oe.so_freight_charges sc JOIN oe.so_freight_charge_types fct ON sc.freight_charge_type_id = fct.freight_charge_type_id GROUP BY fct.name;
These queries support critical processes like freight cost analysis, customer billing verification, and carrier performance reporting.
Related Objects
The SO_FREIGHT_CHARGE_TYPES table has a direct, documented parent-child relationship with the primary transactional table for freight charges. The foreign key relationship is explicitly defined in the ETRM metadata:
- SO_FREIGHT_CHARGES: This transactional table stores the actual freight charge instances applied to sales orders. It references SO_FREIGHT_CHARGE_TYPES via the foreign key column SO_FREIGHT_CHARGES.FREIGHT_CHARGE_TYPE_ID, which joins to SO_FREIGHT_CHARGE_TYPES.FREIGHT_CHARGE_TYPE_ID. This relationship ensures that every applied freight charge is categorized according to a valid, predefined type.
This relationship is fundamental, meaning that SO_FREIGHT_CHARGE_TYPES records are referenced by potentially many rows in the SO_FREIGHT_CHARGES table, enforcing data integrity and enabling detailed freight analysis.
-
Table: SO_FREIGHT_CHARGE_TYPES
12.2.2
owner:OE, object_type:TABLE, fnd_design_data:OE.SO_FREIGHT_CHARGE_TYPES, object_name:SO_FREIGHT_CHARGE_TYPES, status:VALID, product: OE - Order Entry , description: Types of freight charges , implementation_dba_data: OE.SO_FREIGHT_CHARGE_TYPES ,
-
Table: SO_FREIGHT_CHARGE_TYPES
12.1.1
owner:OE, object_type:TABLE, fnd_design_data:OE.SO_FREIGHT_CHARGE_TYPES, object_name:SO_FREIGHT_CHARGE_TYPES, status:VALID, product: OE - Order Entry , description: Types of freight charges , implementation_dba_data: OE.SO_FREIGHT_CHARGE_TYPES ,
-
APPS.WSH_DEL_OI_CORE dependencies on SO_FREIGHT_CHARGE_TYPES
12.2.2
-
APPS.WSH_DEL_OI_CORE dependencies on SO_FREIGHT_CHARGE_TYPES
12.1.1
-
VIEW: APPS.WSHBV_FREIGHT_CHARGE_TYPE
12.1.1
-
SYNONYM: APPS.SO_FREIGHT_CHARGE_TYPES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:SO_FREIGHT_CHARGE_TYPES, status:VALID,
-
VIEW: APPS.WSHFV_FREIGHT_CHARGE
12.1.1
-
VIEW: APPS.SO_FREIGHT_CHARGE_TYPES_V
12.1.1
-
VIEW: APPS.WSHFV_FREIGHT_CHARGE_TYPE
12.1.1
-
VIEW: APPS.WSHFV_FREIGHT_CHARGE_TYPE
12.2.2
-
VIEW: APPS.WSHBV_FREIGHT_CHARGE_TYPE
12.2.2
-
SYNONYM: APPS.SO_FREIGHT_CHARGE_TYPES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:SO_FREIGHT_CHARGE_TYPES, status:VALID,
-
VIEW: OE.SO_FREIGHT_CHARGE_TYPES#
12.2.2
owner:OE, object_type:VIEW, object_name:SO_FREIGHT_CHARGE_TYPES#, status:VALID,
-
VIEW: APPS.SO_FREIGHT_CHARGES_V
12.2.2
-
VIEW: APPS.SO_FREIGHT_CHARGE_TYPES_V
12.2.2
-
VIEW: OE.SO_FREIGHT_CHARGE_TYPES#
12.2.2
-
VIEW: APPS.SO_FREIGHT_CHARGES_V
12.1.1
-
Table: SO_FREIGHT_CHARGES
12.1.1
owner:OE, object_type:TABLE, fnd_design_data:OE.SO_FREIGHT_CHARGES, object_name:SO_FREIGHT_CHARGES, status:VALID, product: OE - Order Entry , description: Freight charges , implementation_dba_data: OE.SO_FREIGHT_CHARGES ,
-
VIEW: APPS.WSHFV_FREIGHT_CHARGE
12.2.2
-
TABLE: OE.SO_FREIGHT_CHARGE_TYPES
12.1.1
owner:OE, object_type:TABLE, fnd_design_data:OE.SO_FREIGHT_CHARGE_TYPES, object_name:SO_FREIGHT_CHARGE_TYPES, status:VALID,
-
TABLE: OE.SO_FREIGHT_CHARGE_TYPES
12.2.2
owner:OE, object_type:TABLE, fnd_design_data:OE.SO_FREIGHT_CHARGE_TYPES, object_name:SO_FREIGHT_CHARGE_TYPES, status:VALID,
-
View: WSHFV_FREIGHT_CHARGE_TYPE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSHFV_FREIGHT_CHARGE_TYPE, object_name:WSHFV_FREIGHT_CHARGE_TYPE, status:VALID, product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: APPS.WSHFV_FREIGHT_CHARGE_TYPE ,
-
View: WSHFV_FREIGHT_CHARGE_TYPE
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSHFV_FREIGHT_CHARGE_TYPE, object_name:WSHFV_FREIGHT_CHARGE_TYPE, status:VALID, product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: APPS.WSHFV_FREIGHT_CHARGE_TYPE ,
-
VIEW: APPS.WSH_CHARGES_V
12.1.1
-
VIEW: APPS.WSH_CHARGES_V
12.2.2
-
Table: SO_FREIGHT_CHARGES
12.2.2
owner:OE, object_type:TABLE, fnd_design_data:OE.SO_FREIGHT_CHARGES, object_name:SO_FREIGHT_CHARGES, status:VALID, product: OE - Order Entry , description: Freight charges , implementation_dba_data: OE.SO_FREIGHT_CHARGES ,
-
View: WSHBV_FREIGHT_CHARGE_TYPE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSHBV_FREIGHT_CHARGE_TYPE, object_name:WSHBV_FREIGHT_CHARGE_TYPE, status:VALID, product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: APPS.WSHBV_FREIGHT_CHARGE_TYPE ,
-
View: WSHBV_FREIGHT_CHARGE_TYPE
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSHBV_FREIGHT_CHARGE_TYPE, object_name:WSHBV_FREIGHT_CHARGE_TYPE, status:VALID, product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: APPS.WSHBV_FREIGHT_CHARGE_TYPE ,
-
12.1.1 FND Design Data
12.1.1
-
View: SO_FREIGHT_CHARGE_TYPES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_FREIGHT_CHARGE_TYPES_V, object_name:SO_FREIGHT_CHARGE_TYPES_V, status:VALID, product: OE - Order Entry , description: 10SC Only , implementation_dba_data: APPS.SO_FREIGHT_CHARGE_TYPES_V ,
-
View: SO_FREIGHT_CHARGE_TYPES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_FREIGHT_CHARGE_TYPES_V, object_name:SO_FREIGHT_CHARGE_TYPES_V, status:VALID, product: OE - Order Entry , description: 10SC Only , implementation_dba_data: APPS.SO_FREIGHT_CHARGE_TYPES_V ,
-
PACKAGE BODY: APPS.WSH_DEL_OI_CORE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:WSH_DEL_OI_CORE, status:VALID,
-
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_TYPE
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSHFV_FREIGHT_CHARGE_TYPE, object_name:WSHFV_FREIGHT_CHARGE_TYPE, status:VALID,
-
PACKAGE BODY: APPS.WSH_DEL_OI_CORE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:WSH_DEL_OI_CORE, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
View: WSH_CHARGES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSH_CHARGES_V, object_name:WSH_CHARGES_V, status:VALID, product: OE - Order Entry , description: Freight charges , implementation_dba_data: APPS.WSH_CHARGES_V ,
-
VIEW: APPS.WSHBV_FREIGHT_CHARGE_TYPE
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSHBV_FREIGHT_CHARGE_TYPE, object_name:WSHBV_FREIGHT_CHARGE_TYPE, status:VALID,
-
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: SO_FREIGHT_CHARGES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_FREIGHT_CHARGES_V, object_name:SO_FREIGHT_CHARGES_V, status:VALID, product: OE - Order Entry , description: 10SC Only , implementation_dba_data: APPS.SO_FREIGHT_CHARGES_V ,
-
View: SO_FREIGHT_CHARGES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_FREIGHT_CHARGES_V, object_name:SO_FREIGHT_CHARGES_V, status:VALID, product: OE - Order Entry , description: 10SC Only , implementation_dba_data: APPS.SO_FREIGHT_CHARGES_V ,
-
VIEW: APPS.WSHBV_FREIGHT_CHARGE_TYPE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSHBV_FREIGHT_CHARGE_TYPE, object_name:WSHBV_FREIGHT_CHARGE_TYPE, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
VIEW: APPS.WSHFV_FREIGHT_CHARGE_TYPE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSHFV_FREIGHT_CHARGE_TYPE, object_name:WSHFV_FREIGHT_CHARGE_TYPE, status:VALID,
-
View: WSH_CHARGES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSH_CHARGES_V, object_name:WSH_CHARGES_V, status:VALID, product: OE - Order Entry , description: Freight charges , implementation_dba_data: APPS.WSH_CHARGES_V ,
-
VIEW: APPS.SO_FREIGHT_CHARGE_TYPES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_FREIGHT_CHARGE_TYPES_V, object_name:SO_FREIGHT_CHARGE_TYPES_V, status:VALID,
-
VIEW: APPS.SO_FREIGHT_CHARGE_TYPES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_FREIGHT_CHARGE_TYPES_V, object_name:SO_FREIGHT_CHARGE_TYPES_V, status:VALID,
-
VIEW: APPS.SO_FREIGHT_CHARGES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_FREIGHT_CHARGES_V, object_name:SO_FREIGHT_CHARGES_V, status:VALID,