Search Results ac_attribute1




Overview

WSH_CHARGES_V is a reporting and integration view owned by the APPS schema in Oracle E-Business Suite releases 12.1.1 and 12.2.2. It belongs to the Order Entry (OE) product family and exposes freight charge information captured against deliveries, picking headers, picking line details, and packed containers within the Oracle Shipping Execution and Order Management flow. The view presents a denormalized, presentation-ready projection of freight charges, joining charge detail to freight charge type definitions, lookup meanings, order headers, and container sequencing so that downstream reports, interfaces, and concurrent programs can retrieve charge data without reproducing the underlying multi-table joins.

The object carries a VALID status in the ETRM repository, confirming that it is a supported, compiled database object. Because it is a view rather than a table, it stores no data of its own; all values are resolved at query time from the base synonyms and the FND_GLOBAL package. This characteristic makes it suitable for read-only reporting and outbound integration, but unsuitable as a target for direct DML.

Underlying Base Objects

The view is defined over the following documented base objects:

The outer joins ensure that a freight charge is returned even when no picking header, order header, or container is associated, which is important for charges recorded at the delivery level.

Key Columns

Common Use Cases and Queries

Typical uses include freight cost analysis, invoice reconciliation, and extraction of global DFF data for downstream systems. The following query retrieves charges with their global attribute1 value:

  • SELECT freight_charge_id, order_number, freight_charge_type_name, amount, currency_code, ac_attribute_category, ac_attribute1 FROM apps.wsh_charges_v WHERE ac_attribute1 IS NOT NULL;
  • SELECT order_number, SUM(amount) FROM apps.wsh_charges_v WHERE charge_type_meaning = 'Freight' GROUP BY order_number;
  • SELECT freight_charge_id, delivery_id, container, invoice_status FROM apps.wsh_charges_v WHERE invoice_status = 'N';

Because the view references FND_GLOBAL and applies outer joins across several shipping tables, queries should be filtered by delivery, order, or date ranges to maintain acceptable performance on high-volume environments.