Search Results cost_per_unit
Overview
APPS.INVBV_PHYSICAL_ADJUSTMENTS is a Business Intelligence System (BIS) view in the Oracle E-Business Suite Inventory module, owned by the APPS schema. It exposes physical inventory adjustment records generated when an item count is performed and reconciled. The view presents the delta between the system-observed quantity and the physically counted quantity for a given item, organization, subinventory, and locator, together with the resulting adjustment quantity and associated cost, lot, and serial attributes. The BV naming convention identifies it as a reporting-oriented view intended for downstream BI, discoverer, and integration consumption rather than for transactional update. It carries FND Design Data reference INV.INVBV_PHYSICAL_ADJUSTMENTS and is documented as VALID in ETRM 12.2.2.
Underlying Base Objects
Per the documented dependency metadata, the view is defined over a single base object: MTL_PHYSICAL_ADJUSTMENTS, referenced through the APPS schema (documented as a SYNOPSIS/SYNONYM in the ETRM extract). This means the view is essentially a flattened, denormalized projection of the physical adjustment transaction table. No other database object is documented as referencing INVBV_PHYSICAL_ADJUSTMENTS; it is a terminal, read-only presentation object. Because the view derives entirely from the physical adjustments table, its one-row-per-adjustment granularity matches the base table, and joining back to MTL_PHYSICAL_ADJUSTMENTS on ADJUSTMENT_ID is the canonical way to enrich these records with additional attributes not surfaced here.
Key Columns
- ADJUSTMENT_ID — Primary identifier of the adjustment record; the join key back to MTL_PHYSICAL_ADJUSTMENTS.
- ORGANIZATION_ID — Inventory organization in which the count and adjustment occurred.
- PHYSICAL_INVENTORY_ID — Links the adjustment to its parent physical inventory definition.
- INVENTORY_ITEM_ID — The counted item.
- SYSTEM_QUANTITY, COUNT_QUANTITY, ADJUSTMENT_QUANTITY — The quantity on record, the quantity physically counted, and the resulting adjustment (typically expressed as COUNT_QUANTITY minus SYSTEM_QUANTITY).
- REVISION, LOT_NUMBER, LOT_EXPIRATION_DATE, SERIAL_NUMBER — Lot, revision, and serial control attributes that identify the precise tracked unit.
- SUBINVENTORY_NAME and INVENTORY_LOCATOR_ID — The subinventory and the inventory locator (stock locator) at which the count was performed. Use of INVENTORY_LOCATOR_ID requires joining to MTL_ITEM_LOCATIONS on INVENTORY_LOCATION_ID to resolve the physical locator segments.
- COST_PER_UNIT — Unit cost applied to value the adjustment.
- _LA:APPROVAL_STATUS, APPROVED_BY_EMPLOYEE_ID — Approval workflow state and the approving employee.
- ADJUSTMENT_ACCOUNT_ID — The account credited or debited by the adjustment.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE — Standard audit columns.
Common Use Cases and Queries
The view is typically used to report count variances, quantify shrinkage, and feed reconciliation or audit processes. A frequent requirement, mirroring the search term inventory_locator_id, is to resolve the locator for each adjustment:
- Variance reporting: select all adjustments for a physical inventory and sum ADJUSTMENT_QUANTITY to measure net variance.
- Locator-level analysis: join INVENTORY_LOCATOR_ID to MTL_ITEM_LOCATIONS to report adjustments by physical bin or locator.
- Valuation: multiply ADJUSTMENT_QUANTITY by COST_PER_UNIT to quantify the financial impact of each adjustment.
A representative query follows:
SELECT a.ADJUSTMENT_ID, a.ORGANIZATION_ID, a.INVENTORY_ITEM_ID, a.SUBINVENTORY_NAME, a.INVENTORY_LOCATOR_ID, a.COUNT_QUANTITY, a.SYSTEM_QUANTITY, a.ADJUSTMENT_QUANTITY, a.COST_PER_UNIT FROM APPS.INVBV_PHYSICAL_ADJUSTMENTS a WHERE a.PHYSICAL_INVENTORY_ID = :p_physical_inventory_id AND a.INVENTORY_LOCATOR_ID IS NOT NULL;
Because the object is a read-only view, no INSERT, UPDATE, or DELETE should be issued against it; adjustments must be created through the standard Inventory count and approval process.
-
VIEW: APPS.INVBV_PHYSICAL_ADJUSTMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVBV_PHYSICAL_ADJUSTMENTS, object_name:INVBV_PHYSICAL_ADJUSTMENTS, status:VALID,
-
VIEW: APPS.INVBV_PHYSICAL_ADJUSTMENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVBV_PHYSICAL_ADJUSTMENTS, object_name:INVBV_PHYSICAL_ADJUSTMENTS, status:VALID,
-
VIEW: APPS.INVFV_PHYSICAL_ADJUSTMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVFV_PHYSICAL_ADJUSTMENTS, object_name:INVFV_PHYSICAL_ADJUSTMENTS, status:VALID,
-
VIEW: APPS.INVFV_PHYSICAL_ADJUSTMENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVFV_PHYSICAL_ADJUSTMENTS, object_name:INVFV_PHYSICAL_ADJUSTMENTS, status:VALID,
-
View: INVBV_PHYSICAL_ADJUSTMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVBV_PHYSICAL_ADJUSTMENTS, object_name:INVBV_PHYSICAL_ADJUSTMENTS, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.INVBV_PHYSICAL_ADJUSTMENTS ,
-
View: INVBV_PHYSICAL_ADJUSTMENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVBV_PHYSICAL_ADJUSTMENTS, object_name:INVBV_PHYSICAL_ADJUSTMENTS, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.INVBV_PHYSICAL_ADJUSTMENTS ,
-
View: INVFV_PHYSICAL_ADJUSTMENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVFV_PHYSICAL_ADJUSTMENTS, object_name:INVFV_PHYSICAL_ADJUSTMENTS, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.INVFV_PHYSICAL_ADJUSTMENTS ,
-
View: INVFV_PHYSICAL_ADJUSTMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVFV_PHYSICAL_ADJUSTMENTS, object_name:INVFV_PHYSICAL_ADJUSTMENTS, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.INVFV_PHYSICAL_ADJUSTMENTS ,
-
eTRM - INV Tables and Views
12.1.1
-
eTRM - INV Tables and Views
12.2.2