Search Results gmf_lc_adj_headers_v




Overview

GMF_LC_ADJ_HEADERS_V is a read-only view owned by the APPS schema in Oracle E-Business Suite, delivered as part of the GMF (Process Manufacturing Financials) product family. Its documented purpose is to expose Landed Cost (LC) adjustment data that is populated from the LCM (Landed Cost Management) tables. The view consolidates shipment line landed cost allocations with receipt transaction and unit of measure context, producing a denormalized result set intended for reporting, reconciliation, and downstream integration of landed cost adjustments.

Because the object is a view rather than a base table, it performs no persistence of its own. All values are derived at query time from the underlying landed cost calculation views and the purchasing, receiving, and inventory synonyms to which it is joined. In the 12.1.1 and 12.2.2 releases the view is registered as VALID, indicating that its definition compiles successfully against the current data dictionary.

Underlying Base Objects

The documented base objects referenced by the view are:

  • INL_DET_LANDED_COSTS_V (VIEW) — supplies the detailed landed cost allocation rows.
  • INL_SHIP_HEADERS_ALL (SYNONYM) — provides inbound shipment header information, including shipment number and operating unit.
  • MTL_UNITS_OF_MEASURE (SYNONYM) — resolves the primary unit of measure code for the transaction quantity.
  • PON_PRICE_ELEMENT_TYPES (SYNONYM) — supplies price element (charge) definitions such as the price element type ID, code, cost acquisition code, and cost component class.
  • RCV_SHIPMENT_HEADERS (SYNONYM) and RCV_SHIPMENT_LINES (SYNONYM) — link landed cost adjustments to the receiving shipment and receipt number.
  • RCV_TRANSACTIONS (SYNONYM) — provides receipt transaction attributes, including transaction date, quantity, UOM, transaction type, and primary quantity.

The joins stitch together the landed cost allocation line, the originating receipt transaction, the inbound shipment, and the associated unit of measure and price element definitions. This assembly allows a single query to return landed cost adjustments with their receipt and shipment context.

Key Columns

The projection includes identifiers, monetary allocations, and classification attributes. Notable columns include:

Common Use Cases and Queries

Because the view exposes TRANSACTION_UOM_CODE alongside transaction and primary quantities, it is frequently used to report landed cost adjustments in the unit of measure in which the receipt was transacted, and to compare that against the primary stocking UOM. Typical scenarios include landed cost variance analysis per receipt, reconciliation of LCM adjustments to RCV transactions, and extracts for cost accounting or external reporting. A representative query is:

  • SELECT adjustment_num, ship_line_id, inventory_item_id, component_name, landed_cost, transaction_quantity, transaction_uom_code, primary_quantity, primary_uom_code, transaction_date FROM apps.gmf_lc_adj_headers_v WHERE organization_id = :org_id AND transaction_date BETWEEN :start_date AND :end_date ORDER BY transaction_date, adjustment_num;

The view can also be filtered by inventory_item_id or charge_line_type_code to isolate specific cost components, and grouped by transaction_uom_code to summarize adjustment amounts by unit of measure. Because it is a view, it should be queried rather than used as a DML target.