Search Results rmcalc_type
Overview
APPS.CM_CMPT_DTL_VW is a reporting view in Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2 that consolidates cost component detail records used by the Cost Management (CM) and Enterprise Territory / Cost Rollup functionality. It sits within the Cost Management application schema and exposes aggregated cost component information derived from the underlying transaction detail table. The view is defined with a UNION ALL structure, combining a grouped aggregation branch with a second branch that returns raw component cost rows. This design allows downstream reports, concurrent programs, and integration interfaces to retrieve both summarized and detailed cost component data through a single object.
The user search term "costcalc_orig" is directly relevant: COSTCALC_ORIG is one of the columns exposed by this view (and carried into its grouping clause), indicating the origin of a cost calculation. This makes the view valuable for tracing where a given cost component was calculated.
Underlying Base Objects
According to the documented ETRM 12.2.2 metadata, the only referenced base object is CM_CMPT_DTL, accessed through a synonym owned by APPS. Both branches of the view's union read from CM_CMPT_DTL:
- The first branch filters rows where
NVL(rmcalc_type,0) > 0and appliesSUM(cmpnt_cost)with aGROUP BYacross nearly all remaining columns. - The second branch returns individual component cost rows keyed by
cmpntcost_id.
Because the view is defined over a single base table, it introduces no joins to external entities; its complexity lies entirely in the aggregation and union logic applied to CM_CMPT_DTL.
Key Columns
The view projects a broad column set. Notable columns include:
- COSTCALC_ORIG — the origin of the cost calculation, preserved in the grouping clause so it remains a distinguishing key.
- ITEM_ID / INVENTORY_ITEM_ID — inventory item identifiers.
- WHSE_CODE, CALENDAR_CODE, PERIOD_CODE — warehouse, cost calendar, and period context.
- COST_MTHD_CODE, COST_CMPNTCLS_ID, COST_ANALYSIS_CODE — cost method, component class, and analysis classification.
- CMPNT_COST — the component cost amount (summed in the first branch).
- BURDEN_IND, ROLLOVER_IND, RMCALC_TYPE, ROLLUP_REF_NO — burden and rollup indicators, plus rollup reference.
- TOTAL_QTY, PERIOD_TRANS_QTY, PERIOD_PERP_QTY — quantity measures.
- COST_TYPE_ID, PERIOD_ID, ORGANIZATION_ID — cost type, period, and organization keys.
- DELETE_MARK — logical deletion flag.
- ATTRIBUTE1–30, ATTRIBUTE_CATEGORY — descriptive flexfield columns.
- CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY — standard audit columns.
Common Use Cases and Queries
Typical uses include cost rollup reporting, cost component analysis by item and period, and reconciliation of calculated versus original cost origins.
Example query retrieving component costs filtered by calculation origin:
SELECT item_id, whse_code, period_code, cost_mthd_code, costcalc_orig, SUM(cmpnt_cost) total_costFROM apps.cm_cmpt_dtl_vwWHERE rmcalc_type > 0GROUP BY item_id, whse_code, period_code, cost_mthd_code, costcalc_orig;
A second common pattern filters on organization and period to support period-close cost reporting, while a third examines burden and rollover indicators (BURDEN_IND, ROLLOVER_IND) to isolate rolled-up versus base cost components. Because the view already performs aggregation in its first branch, consumers should apply additional summing cautiously to avoid double counting.
-
Lookup Type: RMCALC_TYPE
12.1.1
product: GMF - Process Manufacturing Financials , meaning: Raw Material Calculation Type for Actual Cost , description: Raw Material Calculation Type for Actual Cost ,
-
Lookup Type: RMCALC_TYPE
12.2.2
product: GMF - Process Manufacturing Financials , meaning: Raw Material Calculation Type for Actual Cost , description: Raw Material Calculation Type for Actual Cost ,
-
VIEW: APPS.CM_CMPT_DTL_VW
12.1.1
-
VIEW: GMF.CM_MTHD_MST#
12.2.2
-
View: CM_CMPT_DTL_VW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMF.CM_CMPT_DTL_VW, object_name:CM_CMPT_DTL_VW, status:VALID, product: GMF - Process Manufacturing Financials , description: View of TOTAL_COST , implementation_dba_data: APPS.CM_CMPT_DTL_VW ,
-
VIEW: GMF.CM_CMPT_DTL#
12.2.2
-
View: CM_CMPT_DTL_VW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMF.CM_CMPT_DTL_VW, object_name:CM_CMPT_DTL_VW, status:VALID, product: GMF - Process Manufacturing Financials , description: View of TOTAL_COST , implementation_dba_data: APPS.CM_CMPT_DTL_VW ,
-
VIEW: APPS.CM_CMPT_DTL_VW
12.2.2
-
VIEW: GMF.CM_MTHD_MST#
12.2.2
owner:GMF, object_type:VIEW, object_name:CM_MTHD_MST#, status:VALID,
-
APPS.GMF_ITEMCOST_PVT SQL Statements
12.1.1
-
APPS.GMF_ITEMCOST_PVT SQL Statements
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
VIEW: GMF.CM_CMPT_DTL#
12.2.2
owner:GMF, object_type:VIEW, object_name:CM_CMPT_DTL#, status:VALID,
-
TABLE: GMF.CM_MTHD_MST
12.1.1
owner:GMF, object_type:TABLE, fnd_design_data:GMF.CM_MTHD_MST, object_name:CM_MTHD_MST, status:VALID,
-
TABLE: GMF.CM_MTHD_MST
12.2.2
owner:GMF, object_type:TABLE, fnd_design_data:GMF.CM_MTHD_MST, object_name:CM_MTHD_MST, status:VALID,
-
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_V
12.1.1
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 , 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: 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: APPS.PMIBV_ITEM_COST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMIBV_ITEM_COST_V, object_name:PMIBV_ITEM_COST_V, status:VALID,
-
VIEW: APPS.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,
-
View: PMIFV_ITEM_COST_V
12.1.1
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 , 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 ,
-
PACKAGE BODY: APPS.GMF_ITEMCOST_PVT
12.2.2
-
PACKAGE BODY: APPS.GMF_ITEMCOST_PVT
12.1.1
-
VIEW: APPS.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,
-
VIEW: APPS.PMIFV_ITEM_COST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMIFV_ITEM_COST_V, object_name:PMIFV_ITEM_COST_V, status:VALID,
-
VIEW: APPS.CM_CMPT_DTL_VW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMF.CM_CMPT_DTL_VW, object_name:CM_CMPT_DTL_VW, status:VALID,
-
VIEW: APPS.CM_CMPT_DTL_VW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMF.CM_CMPT_DTL_VW, object_name:CM_CMPT_DTL_VW, status:VALID,
-
TABLE: GMF.CM_CMPT_DTL
12.1.1
owner:GMF, object_type:TABLE, fnd_design_data:GMF.CM_CMPT_DTL, object_name:CM_CMPT_DTL, status:VALID,
-
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.1.1
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 , description: Costing Information for product by formula , implementation_dba_data: APPS.PMIFV_FORMULA_COST_V ,
-
View: PMIBV_FORMULA_COST_V
12.1.1
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 , 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 ,
-
TABLE: GMF.CM_CMPT_DTL
12.2.2
owner:GMF, object_type:TABLE, fnd_design_data:GMF.CM_CMPT_DTL, object_name:CM_CMPT_DTL, status:VALID,
-
APPS.GMF_COPY_ITEM_COST SQL Statements
12.2.2
-
APPS.GMF_COPY_ITEM_COST SQL Statements
12.1.1
-
VIEW: APPS.PMIFV_FORMULA_COST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMIFV_FORMULA_COST_V, object_name:PMIFV_FORMULA_COST_V, status:VALID,
-
VIEW: APPS.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,
-
VIEW: APPS.PMIBV_FORMULA_COST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMIBV_FORMULA_COST_V, object_name:PMIBV_FORMULA_COST_V, status:VALID,
-
VIEW: APPS.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,
-
PACKAGE BODY: APPS.GMF_ITEMCOST_PUB
12.2.2
-
PACKAGE BODY: APPS.GMF_ITEMCOST_PUB
12.1.1
-
APPS.GMF_VALIDATIONS_PVT SQL Statements
12.2.2
-
APPS.GMF_VALIDATIONS_PVT SQL Statements
12.1.1
-
PACKAGE: APPS.GMF_ITEMCOST_PUB
12.2.2
-
PACKAGE: APPS.GMF_ITEMCOST_PUB
12.1.1
-
PACKAGE BODY: APPS.GMF_COPY_ITEM_COST
12.1.1
-
PACKAGE BODY: APPS.GMF_COPY_ITEM_COST
12.2.2
-
APPS.GMF_ITEMCOST_PVT dependencies on FND_API
12.1.1
-
PACKAGE BODY: APPS.GMF_API_WRP
12.2.2