Search Results estimated_allocated_amt
Overview
APPS.INL_DET_LANDED_COSTS_V is a reporting view in the Oracle E-Business Suite Logistics module (INL — Landed Cost Management, part of the Inventory/Receiving product family; internal name in earlier releases: eLCM). It exposes, at the ship-line level, the detailed itemised breakdown of landed costs applied to a shipment header adjustment, including the allocation amount and the percentage each cost component contributes to the total. Landed cost components can originate from charges (INL_CHARGE_LINES), taxes (INL_TAX_LINES), or the item price itself, and this view aggregates them so that the total landed cost of a shipment line can be reconstructed and reconciled.
Because the query joins allocation summary data to landed-cost headers and to the charge/tax definitions, the view is suited to reporting and integration: for example feeding landed-cost figures into costing, margin analysis, or external customs/duty reports. It is a VIEW (not a table) and is owned by APPS, so it is normally queried through a synonym or with the APPS schema prefix and is subject to the standard EBS read-only reporting conventions.
Underlying Base Objects
The documented base objects for the 12.2.2 metadata are:
- INL_ALLOCATIONS (synonym) — the primary driver, supplying ship_header_id, adjustment_num, ship_line_id, ship_line_group_id, organization_id, inventory_item_id, primary_qty, allocation_amt and the associated parent table/id used to identify the cost component.
- INL_ASSOCIATIONS (synonym) — links allocations back to their originating entities (charges, taxes, ship headers/lines).
- INL_CHARGE_LINES (synonym) — charge definitions referenced to derive the component name and charge line type.
- INL_TAX_LINES (synonym) — tax definitions referenced to derive the tax code used as the component name.
- INL_SHIP_HEADERS_ALL and INL_SHIP_LINES_ALL (synonyms) — shipment header and line context for the landed cost.
- MTL_SYSTEM_ITEMS_KFV (synonym) — supplies the concatenated item segment (inv_item / component_name fallback).
- MTL_UNITS_OF_MEASURE (synonym) — supplies the unit of measure code shown alongside the primary quantity.
- PON_PRICE_ELEMENT_TYPES_VL (view) — supporting price element / cost component reference.
The view text references the allocation and landed-cost summary views (INL_ALLOCATION_SUMMARY_V, INL_SHIP_LANDED_COSTS_V) and charge line type lookup (INL_CHARGE_LINE_TYPES_VL), which in turn resolve to the base objects listed above.
Key Columns
- SHIP_HEADER_ID, ADJUSTMENT_NUM, SHIP_LINE_ID, SHIP_LINE_GROUP_ID — shipment and adjustment identifiers that uniquely scope a landed-cost application.
- ORGANIZATION_ID, INVENTORY_ITEM_ID, INV_ITEM — the receiving/inventory organisation, item identifier and its concatenated display segment.
- PRIMARY_QTY, UNIT_OF_MEASURE — quantity of the item to which the landed cost applies and its UOM.
- ALLOCATED_AMT — the summed allocation amount for the item/line/adjustment combination.
- ALLOCATION_PERCENT — the share of the total landed-cost allocation that this component represents, computed against the sum of landed-cost allocations for the ship line.
- COMPONENT_TYPE — decoded as CHARGE, TAX, or ITEM PRICE, derived from the associated parent table name.
- COMPONENT_NAME — the charge line type name, tax code, or item concatenated segment, depending on the component type.
Common Use Cases and Queries
Typical scenarios include reconciling the landed cost of a shipment receipt, auditing how charges and taxes are distributed across items, and exporting landed-cost detail to external systems. A representative query filtered by shipment header (the likely object of the search "inl_ship_headers") is:
SELECT ship_header_id, adjustment_num, ship_line_id, inv_item, unit_of_measure, component_type, component_name, allocated_amt, allocation_percent FROM apps.inl_det_landed_costs_v WHERE ship_header_id = :p_ship_header_id ORDER BY ship_line_id, component_type;- Aggregating by component to view total charges versus taxes for a given adjustment:
SELECT component_type, SUM(allocated_amt) FROM apps.inl_det_landed_costs_v WHERE ship_header_id = :p AND adjustment_num = :a GROUP BY component_type; - Joining to INL_SHIP_HEADERS_ALL on ship_header_id to report the shipment number alongside the landed-cost breakdown.
-
VIEW: APPS.INL_DET_LANDED_COSTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_DET_LANDED_COSTS_V, object_name:INL_DET_LANDED_COSTS_V, status:VALID,
-
View: INL_DET_LANDED_COSTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_DET_LANDED_COSTS_V, object_name:INL_DET_LANDED_COSTS_V, status:VALID, product: INL - Oracle Landed Cost Management , description: This view shows detailed landed cost information for a Shipment. , implementation_dba_data: APPS.INL_DET_LANDED_COSTS_V ,
-
VIEW: APPS.INL_DET_LANDED_COSTS_V
12.2.2
-
eTRM - INL Tables and Views
12.2.2
description: This table stores information on taxes associated to Shipment components. ,