Search Results allocated_amt
Overview
APPS.INL_DET_LANDED_COSTS_V is a reporting view in the Oracle Landed Cost Management (INL) module of Oracle E-Business Suite, available in releases 12.1.1 and 12.2.2 with status VALID. Its stated purpose is to present detailed landed cost information for a shipment. Landed Cost Management allows organizations to capture charges, taxes, and item prices associated with inbound shipments, allocate those costs across receipt lines, and correlate estimated charges with the actual supplier invoices received against each shipment.
The view consolidates allocation rows from INL_ALLOCATIONS with shipment header and line context, item master descriptions, unit of measure lookups, and charge or tax definitions. It explicitly exposes ADJUSTMENT_NUM, the column referenced in the user's search. In INL, ADJUSTMENT_NUM identifies a cost adjustment or estimate-versus-actual revision of a landed cost. A null value typically represents the original estimate, while a positive value denotes an adjustment cycle, and a negative value represents the reversal of a prior adjustment. This convention is visible in the view's internal DECODE and SIGN logic, which distinguishes estimated versus actual allocated amounts. The view therefore serves as a foundational data source for cost simulation, trade operations reporting, and custom OBIEE or BI Publisher extracts.
Underlying Base Objects
The view is defined in the APPS schema and, based on documented metadata, references the following base objects through synonyms:
- INL_ALLOCATIONS — the driving table, holding allocated amounts and the
ADJUSTMENT_NUMper shipment header. - INL_ASSOCIATIONS — maps costs to their owning parent table via
FROM_PARENT_TABLE_NAME, used to classify each component as CHARGE, TAX, or ITEM PRICE. - INL_CHARGE_LINES — defines charge lines, including charge type and its own adjustment tracking.
- INL_TAX_LINES — defines tax lines with tax code and adjustment tracking.
- INL_SHIP_HEADERS_ALL — provides shipment header attributes such as
ORGANIZATION_ID. - INL_SHIP_LINES_ALL — supplies shipment line detail, including
SHIP_LINE_ID,PARENT_SHIP_LINE_ID,SHIP_LINE_NUM, quantity, and item. - MTL_SYSTEM_ITEMS_KFV — resolves the concatenated item key flexfield value (
INV_ITEM). - MTL_UNITS_OF_MEASURE — resolves the unit of measure code.
- PON_PRICE_ELEMENT_TYPES_VL — supplies price element code and name for charge-related components.
The join fabric ties each allocation to its shipment header and line, then enriches it with descriptive attributes from the item, UOM, and pricing element sources.
Key Columns
- SHIP_HEADER_ID — shipment header identifier; primary grouping key.
- ADJUSTMENT_NUM — adjustment or estimate version. Null indicates the base/original cost estimate; positive and negative values indicate adjustments and reversals.
- SHIP_LINE_ID / PARENT_SHIP_LINE_ID / SHIP_LINE_NUM — shipment line identity and hierarchy.
- SHIP_LINE_GROUP_ID — groups related shipment lines.
- ORGANIZATION_ID / INVENTORY_ITEM_ID / INV_ITEM — receiving organization, item id, and concatenated item segment value.
- PRIMARY_QTY / UNIT_OF_MEASURE — quantity and UOM for the shipment line.
- COMPONENT_TYPE / COMPONENT_CODE / COMPONENT_NAME — cost component classification (CHARGE, TAX, ITEM PRICE, OTHERS) and its code and description.
- CHARGE_LINE_TYPE_ID — charge line type reference.
- ALLOCATED_AMT — sum of allocated actual cost per shipment line and adjustment.
- ALLOCATION_PERCENT — allocated amount as a percentage of the total for that shipment line and adjustment, computed via
RATIO_TO_REPORT. - ESTIMATED_ALLOCATED_AMT / ESTIMATED_ALLOCATION_PERCENT — the corresponding estimated values, enabling estimate-versus-actual comparison.
Common Use Cases and Queries
Typical scenarios include reconciling estimated landed costs to actual invoices, analyzing allocation percentages per component, and reporting cost adjustments by shipment and organization.
Example: retrieve all landed cost components for a shipment header, including adjustment versions.
SELECT ship_header_id, adjustment_num, ship_line_id, inv_item, component_type, component_code, allocated_amt, allocation_percent, estimated_allocated_amt FROM apps.inl_det_landed_costs_v WHERE ship_header_id = :p_ship_header_id ORDER BY ship_line_id, adjustment_num;
Example: isolate adjustment activity where an estimate has been revised.
SELECT ship_header_id, adjustment_num, ship_line_id, component_name, allocated_amt, estimated_allocated_amt FROM apps.inl_det_landed_costs_v WHERE adjustment_num IS NOT NULL ORDER BY ship_header_id, adjustment_num;
Example: summarize allocated costs by component type for a shipment.
SELECT component_type, component_code, SUM(allocated_amt) allocated_total FROM apps.inl_det_landed_costs_v WHERE ship_header_id = :p_ship_header_id GROUP BY component_type, component_code;
Because the view already performs aggregation and percentage calculations, it is well suited to direct reporting queries; however, callers should filter on SHIP_HEADER_ID and ADJUSTMENT_NUM to control the volume of rows returned from large alloc transactions.
-
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 ,
-
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_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
-
VIEW: APPS.INL_DET_LANDED_COSTS_V
12.1.1
-
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. ,