Search Results pmits_inv_line_summ_v
Overview
The PMITS_INV_LINE_SUMM_V view belongs to the Process Manufacturing Intelligence (PMI) product family within Oracle E-Business Suite and resides in the APPS schema. Its documented purpose is to summarize inventory transactions at the line level, aggregating detail rows drawn from the inventory transaction and lot master sources into a single, rolled-up record per document line. The view is exposed to reporting and analytics consumers — particularly PMI dashboards, Oracle Discoverer workbooks, and BI Publisher reports — where transaction volumes must be condensed without losing lot and sublot lineage.
The user search term "sublot_number" maps directly to the view's SUBLOT_NUMBER column, which is derived from IC_LOTS_MST.SUBLOT_NO. This column is central to process manufacturing because a single lot may be subdivided into one or more sublots, and consolidated reporting must indicate when transactions span multiple sublots. The view uses a DECODE/COUNT DISTINCT pattern to detect this: if exactly one distinct sublot value exists per line, that value is returned; otherwise the literal asterisk (*) is returned, signaling that the line aggregates across multiple sublots. The same consolidation logic applies to lot number, lot status, quality control grade, reason code, company code, organization code, warehouse, location, and transaction date.
Underlying Base Objects
ETRM metadata documents the following referenced base objects:
- IC_TRAN_VW1 (VIEW) — the driving transaction source, aliased
TRAN, supplying document, line, item, quantity, UOM, lot, sublot, status, and reason attributes. - IC_LOTS_MST (SYNONYM) — the lot master, aliased
LOT, joined onLOT_IDandITEM_ID, supplyingLOT_NOandSUBLOT_NO. - IC_ITEM_MST (SYNONYM) — the item master, aliased
ITM, joined onITEM_ID. - FND_DATE (PACKAGE) — used via
FND_DATE.DATE_TO_DISPLAYDTto render the transaction date in display format. - PMI_SECURITY_PKG (PACKAGE) — invoked as
PMI_SECURITY_PKG.SHOW_RECORD(TRAN.ORGN_CODE)to enforce organization-level row security.
All joins are inner joins, so only transactions with valid item and lot master entries are returned.
Key Columns
- DOC_ID, DOC_TYPE, LINE_ID, ITEM_ID — the line-level keys governing the GROUP BY.
- JOIN_DOC_ID — a DECODE-normalized document identifier that collapses transfer and receipt document types (
XFER,TRNI,MTRI,TRNR) ontoDOC_ID; otherwise the constant1. - COMPANY_CODE, ORGANIZATION_CODE, WAREHOUSE_CODE, LOCATION — consolidated context attributes, or
*when the line spans multiple values. - TRANSACTION_DATE — display-formatted date, or
*if multiple dates exist. - LOT_ID, LOT_NUMBER, SUBLOT_NUMBER, LOT_STATUS — lot lineage and disposition attributes, consolidated with the
*convention. - QUALITY_CONTROL_GRADE, REASON_CODE — quality and movement-reason attributes.
- TRANSACTION_UOM, TRANSACTION_SECONDARY_UOM, TRANSACTION_QTY, TRANSACTION_QTY2 — summed primary and secondary quantities with their units of measure.
Common Use Cases and Queries
The view is typically used to report aggregated material movement by document line, filter lots lacking a sublot assignment, or reconcile transfer pairs.
-- Transactions grouped by lot and sublot
SELECT lot_number, sublot_number,
SUM(transaction_qty) total_qty
FROM apps.pmits_inv_line_summ_v
WHERE sublot_number IS NOT NULL
AND sublot_number <> '*'
GROUP BY lot_number, sublot_number;
-- Lines consolidating multiple sublots (exception report) SELECT doc_id, line_id, item_id, lot_number FROM apps.pmits_inv_line_summ_v WHERE sublot_number = '*';
-- Line detail with transfer-pair normalization
SELECT join_doc_id, doc_type, line_id,
organization_code, transaction_date, transaction_qty
FROM apps.pmits_inv_line_summ_v
WHERE doc_id = :p_doc_id
ORDER BY line_id;
Because the view enforces PMI_SECURITY_PKG.SHOW_RECORD, only organizations visible to the connected user's security profile are returned; report developers must therefore grant the view (not the base synonyms alone) and ensure the responsibility's organization access is configured correctly.
-
View: PMITS_INV_LINE_SUMM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMITS_INV_LINE_SUMM_V, object_name:PMITS_INV_LINE_SUMM_V, status:VALID, product: PMI - Process Manufacturing Intelligence , description: This View Summarizes Transactions at Line Level , implementation_dba_data: APPS.PMITS_INV_LINE_SUMM_V ,
-
View: PMITS_INV_LINE_SUMM_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMITS_INV_LINE_SUMM_V, object_name:PMITS_INV_LINE_SUMM_V, status:VALID, product: PMI - Process Manufacturing Intelligence (Obsolete) , description: This View Summarizes Transactions at Line Level , implementation_dba_data: APPS.PMITS_INV_LINE_SUMM_V ,
-
PACKAGE: APPS.PMI_SECURITY_PKG
12.2.2
owner:APPS, object_type:PACKAGE, object_name:PMI_SECURITY_PKG, status:VALID,
-
PACKAGE: APPS.PMI_SECURITY_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:PMI_SECURITY_PKG, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
VIEW: APPS.PMITS_INV_LINE_SUMM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMITS_INV_LINE_SUMM_V, object_name:PMITS_INV_LINE_SUMM_V, status:VALID,
-
VIEW: APPS.IC_TRAN_VW1
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMI.IC_TRAN_VW1, object_name:IC_TRAN_VW1, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
VIEW: APPS.PMITS_INV_LINE_SUMM_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMITS_INV_LINE_SUMM_V, object_name:PMITS_INV_LINE_SUMM_V, status:VALID,
-
VIEW: APPS.IC_TRAN_VW1
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMI.IC_TRAN_VW1, object_name:IC_TRAN_VW1, status:VALID,
-
SYNONYM: APPS.IC_LOTS_MST
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IC_LOTS_MST, status:VALID,
-
SYNONYM: APPS.IC_LOTS_MST
12.2.2
owner:APPS, object_type:SYNONYM, object_name:IC_LOTS_MST, status:VALID,
-
SYNONYM: APPS.IC_ITEM_MST
12.2.2
owner:APPS, object_type:SYNONYM, object_name:IC_ITEM_MST, status:VALID,
-
SYNONYM: APPS.IC_ITEM_MST
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IC_ITEM_MST, status:VALID,
-
eTRM - PMI Tables and Views
12.2.2
-
eTRM - PMI Tables and Views
12.1.1
-
PACKAGE: APPS.FND_DATE
12.1.1
owner:APPS, object_type:PACKAGE, object_name:FND_DATE, status:VALID,
-
eTRM - GMI Tables and Views
12.1.1
description: Table used to relate Item ID with Roles. If the Item ID is NULL, then Roles will be associated with the warehouse Item ID. This table will be used by the Lot Expiry/Retest Workflow. ,
-
eTRM - GMI Tables and Views
12.2.2
description: Table used to relate Item ID with Roles. If the Item ID is NULL, then Roles will be associated with the warehouse Item ID. This table will be used by the Lot Expiry/Retest Workflow. ,
-
PACKAGE: APPS.FND_DATE
12.2.2
owner:APPS, object_type:PACKAGE, object_name:FND_DATE, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - PMI Tables and Views
12.1.1
-
eTRM - PMI Tables and Views
12.2.2
-
eTRM - GMI Tables and Views
12.1.1
description: Table used to relate Item ID with Roles. If the Item ID is NULL, then Roles will be associated with the warehouse Item ID. This table will be used by the Lot Expiry/Retest Workflow. ,
-
eTRM - GMI Tables and Views
12.2.2
description: Table used to relate Item ID with Roles. If the Item ID is NULL, then Roles will be associated with the warehouse Item ID. This table will be used by the Lot Expiry/Retest Workflow. ,