Search Results sort_sequence
Overview
PMIBV_ITEM_COST_V is an Oracle E-Business Suite view owned by the APPS schema and shipped with the Process Manufacturing Intelligence (PMI) product family. It presents item costing information sourced from the Oracle Process Manufacturing (OPM) Cost Management (CM) tables, rather than from the General Ledger. As the documented description states, it is the OPM equivalent of item_cost_from_GL, which retrieves comparable costing data from the GL tables. The view is therefore a reporting and integration construct that exposes OPM cost component detail in a flattened, read-friendly form suited to cost analysis, cost rollup inquiries, and downstream extraction into reporting tools.
The object is reported as VALID in both 12.1.1 and 12.2.2, and is defined with a WITH READ ONLY clause, confirming that it is intended purely for query access and cannot be updated through the view.
Underlying Base Objects
The view is defined over two OPM Cost Management base objects, exposed to APPS through synonyms:
- CM_CMPT_DTL — the cost component detail table, aliased as
COSTDETAIL. This supplies the per-item, per-period cost figures and rollup attributes. - CM_CMPT_MST — the cost component master table, aliased as
COSTMASTER. This supplies component class codes, descriptions, sort order, and various indicator flags.
The two objects are joined on COST_CMPNTCLS_ID, and the query filters COSTDETAIL.DELETE_MARK = 0, so only non-deleted cost detail rows are returned. Because the join is enforced via that single class ID predicate, the view resolves into a single SELECT with no outer joins, meaning rows in CM_CMPT_DTL require a matching component class in CM_CMPT_MST to appear.
Key Columns
The view exposes the following principal columns:
- COST_LEVEL — the cost level at which the component detail is recorded (for example, this versus lower-level rollups).
- COMPONENT_COST — the cost amount attributed to the component (aliased from
CMPNT_COST). - BURDEN_INDICATOR and ROLLOVER_INDICATOR — flags indicating burden treatment and rollover status.
- ROLLUP_REF_NO — the rollup reference number. This is the column most directly related to the user's search term and identifies the cost rollup run or reference to which the detail row belongs.
- RMCALC_TYPE and COSTCALC_ORIG — the calculation type and origin of the cost calculation.
- TOTAL_QTY — the quantity basis for the component cost.
- FORMULA_EFF_ID (from
FMEFF_ID) — the formula effectiveness identifier linking the cost to a specific formula version. - ITEM_ID, WHSE_CODE, CALENDAR_CODE, PERIOD_CODE — identification and costing context for the item, warehouse, calendar, and period.
- COST_MTHD_CODE, COST_ANALYSIS_CODE, COST_CMPNTCLS_ID — costing method, analysis code, and component class identifier.
- COST_CMPNTCLS_CODE, COST_CMPNTCLS_DESC, SORT_SEQUENCE, USAGE_IND, PRODUCT_COST_IND, UPDATE_COST_IND, PPV_IND, CMPNT_GROUP — descriptive and control attributes from the component master.
- CREATED_BY, CREATION_DATE, LAST_UPDATE_DATE, LAST_UPDATED_BY — standard audit columns.
Common Use Cases and Queries
Typical scenarios include retrieving all cost components for an item in a given period, analyzing rollups by reference number, and extracting OPM cost detail for external reporting where the GL-based equivalent is not appropriate.
To inspect the components associated with a specific rollup reference:
SELECT item_id, whse_code, period_code,
rollup_ref_no, cost_cmpntcls_code,
component_cost, total_qty
FROM apps.pmibv_item_cost_v
WHERE rollup_ref_no = :p_rollup_ref_no
ORDER BY sort_sequence;
To report component costs for items in a period:
SELECT item_id, calendar_code, period_code,
cost_cmpntcls_desc, component_cost
FROM apps.pmibv_item_cost_v
WHERE item_id = :p_item_id
AND period_code = :p_period_code;
Because the view is read-only and defined over OPM CM tables, it is best used for inquiry and extraction, not for transactional maintenance.
-
View: PMIBV_ITEM_COST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMIBV_ITEM_COST_V, object_name:PMIBV_ITEM_COST_V, status:VALID, product: PMI - Process Manufacturing Intelligence (Obsolete) , description: Costing info for an item. Costing info is retrieved from CM tables, OPM equivalent of the item_cost_from_GL view which retrieves data from the GL tables. , implementation_dba_data: APPS.PMIBV_ITEM_COST_V ,
-
View: PMIBV_ITEM_COST_FROM_GL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMIBV_ITEM_COST_FROM_GL_V, object_name:PMIBV_ITEM_COST_FROM_GL_V, status:VALID, product: PMI - Process Manufacturing Intelligence (Obsolete) , description: Costing info for an item. Costing info is retrieved from the GL equivalent of the item_cost view which retrieves data from OPM tables. , implementation_dba_data: APPS.PMIBV_ITEM_COST_FROM_GL_V ,
-
View: PMIFV_ITEM_COST_FROM_GL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMIFV_ITEM_COST_FROM_GL_V, object_name:PMIFV_ITEM_COST_FROM_GL_V, status:VALID, product: PMI - Process Manufacturing Intelligence (Obsolete) , description: Costing information for an item retrieved from Oracle Financial GL tables. This is the GL equivalent of the item_cost view which retrieves data from the OPM costing tables. , implementation_dba_data: APPS.PMIFV_ITEM_COST_FROM_GL_V ,
-
View: PMIFV_ITEM_COST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMIFV_ITEM_COST_V, object_name:PMIFV_ITEM_COST_V, status:VALID, product: PMI - Process Manufacturing Intelligence (Obsolete) , description: Costing information for an item retrieved from costing tables. This is the OPM costing tables equivalent of the item_cost_from_GL view which retrieves data from the GL tables. , implementation_dba_data: APPS.PMIFV_ITEM_COST_V ,
-
View: PMIBV_FORMULA_COST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMIBV_FORMULA_COST_V, object_name:PMIBV_FORMULA_COST_V, status:VALID, product: PMI - Process Manufacturing Intelligence (Obsolete) , description: Costing Information for product by formula , implementation_dba_data: APPS.PMIBV_FORMULA_COST_V ,
-
View: PMIFV_FORMULA_COST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMIFV_FORMULA_COST_V, object_name:PMIFV_FORMULA_COST_V, status:VALID, product: PMI - Process Manufacturing Intelligence (Obsolete) , description: Costing Information for product by formula , implementation_dba_data: APPS.PMIFV_FORMULA_COST_V ,