Search Results burden_ind
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.
-
VIEW: APPS.CM_CMPT_DTL_VW
12.1.1
-
VIEW: GMF.GMF_LOT_COST_DETAILS#
12.2.2
-
VIEW: GMF.CM_CMPT_DTL#
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: 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
-
APPS.GMF_ITEMCOST_PVT SQL Statements
12.2.2
-
APPS.GMF_ITEMCOST_PVT SQL Statements
12.1.1
-
VIEW: APPS.CM_CMPT_DTL_VW1
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMF.CM_CMPT_DTL_VW1, object_name:CM_CMPT_DTL_VW1, status:VALID,
-
VIEW: APPS.CM_CMPT_DTL_VW1
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMF.CM_CMPT_DTL_VW1, object_name:CM_CMPT_DTL_VW1, status:VALID,
-
View: CM_CMPT_DTL_VW1
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMF.CM_CMPT_DTL_VW1, object_name:CM_CMPT_DTL_VW1, status:VALID, product: GMF - Process Manufacturing Financials , description: View on cm_cmpt_dtl , implementation_dba_data: APPS.CM_CMPT_DTL_VW1 ,
-
TYPE: SYSTEM.GMF_COST_TYPE
12.2.2
owner:SYSTEM, object_type:TYPE, object_name:GMF_COST_TYPE, status:VALID,
-
TYPE: SYSTEM.GMF_COST_TYPE
12.1.1
owner:SYSTEM, object_type:TYPE, object_name:GMF_COST_TYPE, status:VALID,
-
VIEW: GMF.GMF_LOT_COST_DETAILS#
12.2.2
owner:GMF, object_type:VIEW, object_name:GMF_LOT_COST_DETAILS#, status:VALID,
-
VIEW: GMF.CM_CMPT_DTL#
12.2.2
owner:GMF, object_type:VIEW, object_name:CM_CMPT_DTL#, status:VALID,
-
View: CM_CMPT_DTL_VW1
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMF.CM_CMPT_DTL_VW1, object_name:CM_CMPT_DTL_VW1, status:VALID, product: GMF - Process Manufacturing Financials , description: View on cm_cmpt_dtl , implementation_dba_data: APPS.CM_CMPT_DTL_VW1 ,
-
TABLE: GMF.GMF_LOT_COST_DETAILS
12.1.1
owner:GMF, object_type:TABLE, fnd_design_data:GMF.GMF_LOT_COST_DETAILS, object_name:GMF_LOT_COST_DETAILS, status:VALID,
-
TABLE: GMF.GMF_LOT_COST_DETAILS
12.2.2
owner:GMF, object_type:TABLE, fnd_design_data:GMF.GMF_LOT_COST_DETAILS, object_name:GMF_LOT_COST_DETAILS, 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,
-
PACKAGE BODY: APPS.GMF_ITEMCOST_PVT
12.1.1
-
PACKAGE BODY: APPS.GMF_ITEMCOST_PVT
12.2.2
-
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,
-
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.1.1
-
PACKAGE BODY: APPS.GMF_ITEMCOST_PUB
12.2.2
-
PACKAGE BODY: APPS.GMF_ITEMCOST_PUB
12.1.1
-
APPS.GMF_COPY_ITEM_COST SQL Statements
12.2.2
-
PACKAGE: APPS.GMF_ITEMCOST_PUB
12.2.2
-
PACKAGE: APPS.GMF_ITEMCOST_PUB
12.1.1
-
APPS.GMF_ITEMCOST_PUB SQL Statements
12.2.2
-
APPS.GMF_ITEMCOST_PUB SQL Statements
12.1.1
-
APPS.GMF_LOT_COSTING_PUB SQL Statements
12.2.2
-
PACKAGE BODY: APPS.GMF_COPY_ITEM_COST
12.1.1
-
APPS.GMF_LOT_COSTING_PUB SQL Statements
12.1.1
-
PACKAGE BODY: APPS.GMF_COPY_ITEM_COST
12.2.2
-
APPS.GMF_COPY_ITEM_COST dependencies on GEM5_CMPNT_COST_ID_S
12.2.2
-
APPS.GMF_COPY_ITEM_COST dependencies on GEM5_CMPNT_COST_ID_S
12.1.1
-
PACKAGE BODY: APPS.GMF_API_WRP
12.2.2
-
PACKAGE BODY: APPS.GMF_API_WRP
12.1.1
-
APPS.GMF_ITEMCOST_PVT dependencies on CM_CMPT_DTL
12.1.1
-
APPS.GMF_ITEMCOST_PVT dependencies on CM_CMPT_DTL
12.2.2
-
APPS.GMF_ITEMCOST_PVT dependencies on FND_API
12.1.1
-
APPS.GMF_ITEMCOST_PVT dependencies on FND_API
12.2.2
-
PACKAGE BODY: APPS.GMF_LOT_COSTING_PUB
12.2.2
-
APPS.GMF_ITEMCOST_PUB dependencies on CM_CMPT_MST
12.1.1
-
APPS.GMF_ITEMCOST_PUB dependencies on CM_CMPT_MST
12.2.2
-
APPS.GMF_LOT_COSTING_PUB dependencies on GMF_LOT_COST_BURDENS
12.2.2
-
APPS.GMF_ITEMCOST_PUB dependencies on FND_MESSAGE
12.2.2
-
APPS.GMF_ITEMCOST_PUB dependencies on FND_MESSAGE
12.1.1