Search Results inl_allocation_summary_v
Overview
INL_ALLOCATION_SUMMARY_V is a VALID database view owned by the APPS schema within Oracle Landed Cost Management (INL), available in Oracle E-Business Suite 12.1.1 and 12.2.2. Per the ETRM documentation, the view shows the summary of the allocation of shipment amounts. In practical terms, it joins shipment header and line records with their association and allocation records, exposing the monetary amounts allocated to landed cost charges and taxes at the shipment line level.
The view serves as a reporting and integration layer over the base landed cost allocation tables. Rather than requiring report authors or interface developers to reconstruct the multi-table join logic that links shipments, associations, and allocations, the view presents a denormalized, query-ready result set. This makes it suitable for landed cost analysis, charge and tax reconciliation, and downstream data extraction into custom reports, concurrent programs, or external systems.
Underlying Base Objects
The documented ETRM metadata identifies four referenced base objects, all resolved through synonyms:
- INL_SHIP_HEADERS_ALL — the shipment header, providing SHIP_HEADER_ID, ORGANIZATION_ID, and ADJUSTMENT_NUM.
- INL_SHIP_LINES_ALL — the shipment lines, providing inventory item, quantity, UOM, and line identifiers; joined to headers by SHIP_HEADER_ID and to allocations by SHIP_LINE_ID.
- INL_ASSOCIATIONS — the association records linking landed cost entities to their source documents; joined on ASSOCIATION_ID with an outer join condition.
- INL_ALLOCATIONS — the allocation records holding ALLOCATION_AMT and LANDED_COST_FLAG; this is the central fact-like source for allocated amounts.
The join relationships are fixed: shipment header equals shipment line header, header equals allocation header, and the shipment line and association relationships are outer-joined (via (+)) to the allocation, ensuring allocation rows are preserved even when line or association detail is absent.
Key Columns
- SHIP_HEADER_ID — unique identifier of the landed cost shipment header.
- ADJUSTMENT_NUM — the adjustment number associated with the shipment allocation.
- ORGANIZATION_ID — the inventory organization owning the shipment.
- INVENTORY_ITEM_ID, PRIMARY_QTY, PRIMARY_UOM_CODE — the item and its primary quantity/UOM on the shipment line.
- SHIP_LINE_GROUP_ID, SHIP_LINE_ID, SHIP_LINE_NUM — shipment line grouping and identifiers.
- ASSOCIATION_ID, ASSOC_FROM_PARENT_TABLE_NAME, ASSOC_FROM_PARENT_TABLE_ID — the association record and the source document (table name and ID) from which the association originates.
- CHARGE_LINE_ID — populated via DECODE when the allocation's TO_PARENT_TABLE_NAME is INL_CHARGE_LINES; otherwise NULL.
- TAX_LINE_ID — populated via DECODE when TO_PARENT_TABLE_NAME is INL_TAX_LINES; otherwise NULL.
- ALLOCATION_ID, ALLOCATION_AMT — the allocation record identifier and the allocated amount.
- LANDED_COST_FLAG — indicates whether the allocation relates to a landed cost.
Common Use Cases and Queries
Typical scenarios include summarizing landed cost allocations by shipment or item, reconciling charge lines versus tax lines, and feeding allocation data into cost analysis reports. The CHARGE_LINE_ID and TAX_LINE_ID columns allow filtering by cost category directly.
Allocated amounts for a shipment:
SELECT ship_header_id, ship_line_id, inventory_item_id,
allocation_id, allocation_amt, landed_cost_flag
FROM apps.inl_allocation_summary_v
WHERE ship_header_id = :p_ship_header_id;
Total allocations by item for an organization:
SELECT organization_id, inventory_item_id,
SUM(allocation_amt) total_allocated
FROM apps.inl_allocation_summary_v
WHERE organization_id = :p_org_id
GROUP BY organization_id, inventory_item_id;
Reconciling charge versus tax allocations:
SELECT ship_header_id, ship_line_id,
SUM(NVL(allocation_amt,0)) allocation_amt,
COUNT(charge_line_id) charge_lines,
COUNT(tax_line_id) tax_lines
FROM apps.inl_allocation_summary_v
GROUP BY ship_header_id, ship_line_id;
As with all APPS synonyms, query the view through the APPS schema and apply organization or shipment filters to limit result sets on high-volume installations.
-
View: INL_ALLOCATION_SUMMARY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_ALLOCATION_SUMMARY_V, object_name:INL_ALLOCATION_SUMMARY_V, status:VALID, product: INL - Oracle Landed Cost Management , description: This view shows the summary of the allocation of Shipment amounts. , implementation_dba_data: APPS.INL_ALLOCATION_SUMMARY_V ,
-
View: INL_ALLOCATION_SUMMARY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_ALLOCATION_SUMMARY_V, object_name:INL_ALLOCATION_SUMMARY_V, status:VALID, product: INL - Oracle Landed Cost Management , description: This view shows the summary of the allocation of Shipment amounts. , implementation_dba_data: APPS.INL_ALLOCATION_SUMMARY_V ,
-
VIEW: APPS.INL_SHIPLN_LANDED_COSTS_V
12.1.1
-
View: INL_SHIPLN_LANDED_COSTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_SHIPLN_LANDED_COSTS_V, object_name:INL_SHIPLN_LANDED_COSTS_V, status:VALID, product: INL - Oracle Landed Cost Management , description: This view shows landed cost information for Shipment Lines , implementation_dba_data: APPS.INL_SHIPLN_LANDED_COSTS_V ,
-
VIEW: APPS.INL_DET_LANDED_COSTS_V
12.1.1
-
View: INL_DET_LANDED_COSTS_V
12.1.1
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 ,
-
12.2.2 DBA Data
12.2.2
-
SYNONYM: APPS.INL_ALLOCATIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:INL_ALLOCATIONS, status:VALID,
-
SYNONYM: APPS.INL_SHIP_HEADERS_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:INL_SHIP_HEADERS_ALL, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
SYNONYM: APPS.INL_ASSOCIATIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:INL_ASSOCIATIONS, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
SYNONYM: APPS.INL_SHIP_HEADERS_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:INL_SHIP_HEADERS_ALL, status:VALID,
-
SYNONYM: APPS.INL_SHIP_LINES_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:INL_SHIP_LINES_ALL, status:VALID,
-
SYNONYM: APPS.INL_SHIP_LINES_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:INL_SHIP_LINES_ALL, status:VALID,
-
SYNONYM: APPS.INL_ALLOCATIONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:INL_ALLOCATIONS, status:VALID,
-
SYNONYM: APPS.INL_ASSOCIATIONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:INL_ASSOCIATIONS, status:VALID,
-
VIEW: APPS.INL_ALLOCATION_SUMMARY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_ALLOCATION_SUMMARY_V, object_name:INL_ALLOCATION_SUMMARY_V, status:VALID,
-
VIEW: APPS.INL_SHIPLN_LANDED_COSTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_SHIPLN_LANDED_COSTS_V, object_name:INL_SHIPLN_LANDED_COSTS_V, status:VALID,
-
VIEW: APPS.INL_DET_LANDED_COSTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_DET_LANDED_COSTS_V, object_name:INL_DET_LANDED_COSTS_V, status:VALID,
-
VIEW: APPS.INL_ALLOCATION_SUMMARY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_ALLOCATION_SUMMARY_V, object_name:INL_ALLOCATION_SUMMARY_V, status:VALID,
-
eTRM - INL Tables and Views
12.1.1
description: This table stores information on taxes associated to Shipment components. ,
-
eTRM - INL Tables and Views
12.2.2
description: This table stores information on taxes associated to Shipment components. ,
-
eTRM - INL Tables and Views
12.1.1
description: This table stores information on taxes associated to Shipment components. ,
-
eTRM - INL Tables and Views
12.2.2
description: This table stores information on taxes associated to Shipment components. ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1