Search Results cm_cldr_hdr
Overview
CM_CLDR_HDR is the Costing Calendar Header table within the GMF (Process Manufacturing Financials) product family of Oracle E-Business Suite. It defines the header-level definition of a costing calendar, the structure that governs how process manufacturing cost rollups, period assignments, and cost method applications are sequenced over time. Each row represents one named costing calendar, identified by the CALENDAR_CODE business key, and binds that calendar to a cost method, a text template, and an operating organization context. In EBS 12.1.1 and 12.2.2 the table is part of the Process Manufacturing Cost Management schema and is used primarily by the cost rollup and period-close engines that must align cost derivation with a defined calendar horizon.
The documentation explicitly notes that this object is not implemented in the reference database, meaning the table may be deployed only where Process Manufacturing Costing is licensed and configured. Its structure, however, remains stable across the 12.1.1 and 12.2.2 releases.
The heuristic Data Vault classification mined from the foreign-key structure is satellite-leaning. In modeling terms, CM_CLDR_HDR functions as a descriptive satellite attached to core business hubs: its primary key is a single business code, and most of its non-key attributes are descriptive or referential context rather than independent entities. This classification should be treated as a design suggestion rather than a formal constraint.
Key Information Stored
The documented columns and their roles are:
- CALENDAR_CODE — the single-column primary key (CM_CLDR_HDR_PK). This is the business key: a user-visible code naming the costing calendar. Because the surrogate and business key coincide here, the PK is a natural key rather than a generated sequence.
- COST_MTHD_CODE — foreign key to CM_MTHD_MST, identifying the cost method applied when this calendar drives cost derivation.
- TEXT_CODE — foreign key to CM_TEXT_HDR, referencing the text template associated with the calendar (used for descriptive or annotation content).
- CO_CODE — foreign key to SY_ORGN_MST, associating the calendar with an operating organization or company context.
Additional descriptive columns exist beyond those documented, but the four above constitute the essential structure: one business identifier and three referential attributes that anchor the calendar to method, text, and organization dimensions. The detail-level period definitions that complete the calendar are held in CM_CLDR_DTL, not in this header table.
Common Use Cases and Queries
Typical usage centers on validating that a costing calendar is properly configured before running cost rollups or period close. A common diagnostic query resolves the cost method name and organization for a given calendar:
- Joining CM_CLDR_HDR to CM_MTHD_MST on COST_MTHD_CODE to confirm the cost method assigned.
- Joining to SY_ORGN_MST on CO_CODE to identify the owning organization.
- Joining to CM_CLDR_DTL on CALENDAR_CODE to explode the period-level detail.
Sample pattern:
SELECT h.calendar_code, h.cost_mthd_code, m.cost_mthd_name, h.co_code, d.period_code
FROM cm_cldr_hdr h, cm_mthd_mst m, cm_cldr_dtl d
WHERE h.cost_mthd_code = m.cost_mthd_code
AND h.calendar_code = d.calendar_code;
Reporting use cases include auditing which organizations share a cost method, listing calendars that reference a particular text template, and identifying calendars with no detail rows (configuration gaps) prior to cost rollup execution.
Related Objects
The most significant related objects, per documented referential structure:
- CM_CLDR_DTL — detail child table; joins on CM_CLDR_DTL.CALENDAR_CODE = CM_CLDR_HDR.CALENDAR_CODE. This is the primary dependent object.
- CM_MTHD_MST — cost method master; joined on COST_MTHD_CODE.
- CM_TEXT_HDR — text header master; joined on TEXT_CODE.
- SY_ORGN_MST — organization master; joined on CO_CODE.
Together these form the complete costing calendar configuration chain: header, periods, method, annotation, and organization.
-
Table: CM_CLDR_HDR
12.1.1
product: GMF - Process Manufacturing Financials , description: Costing Calendar Header Table , implementation_dba_data: Not implemented in this database ,
-
Table: CM_CLDR_HDR
12.2.2
product: GMF - Process Manufacturing Financials , description: Costing Calendar Header Table , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.PMIBV_COSTCAL_LOV_V
12.2.2
-
VIEW: APPS.PMIBV_COSTCAL_LOV_V
12.1.1
-
TRIGGER: APPS.CM_CLDR_HDR_DL
12.2.2
-
TRIGGER: APPS.CM_CLDR_HDR_DL
12.1.1
-
VIEW: APPS.PMIFV_GL_CM_COST_COMPARISON_V
12.2.2
-
VIEW: APPS.CM_CLDR_MST_V
12.1.1
-
VIEW: APPS.PMIFV_GL_CM_COST_COMPARISON_V
12.1.1
-
VIEW: APPS.CM_CLDR_MST_V
12.2.2
-
VIEW: APPS.PMIFV_BURDEN_V
12.2.2
-
View: PMIFV_GL_CM_COST_COMPARISON_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMIFV_GL_CM_COST_COMPARISON_V, object_name:PMIFV_GL_CM_COST_COMPARISON_V, status:VALID, product: PMI - Process Manufacturing Intelligence (Obsolete) , description: Costing information from both the GL and Process Manufacturing costing tables. , implementation_dba_data: APPS.PMIFV_GL_CM_COST_COMPARISON_V ,
-
TRIGGER: APPS.CM_CLDR_HDR_UL
12.2.2
-
TRIGGER: APPS.CM_CLDR_HDR_UL
12.1.1
-
TRIGGER: APPS.CM_CLDR_HDR_IL
12.1.1
-
TRIGGER: APPS.CM_CLDR_HDR_IL
12.2.2
-
VIEW: APPS.PMIFV_BURDEN_V
12.1.1
-
View: PMIFV_GL_CM_COST_COMPARISON_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMIFV_GL_CM_COST_COMPARISON_V, object_name:PMIFV_GL_CM_COST_COMPARISON_V, status:VALID, product: PMI - Process Manufacturing Intelligence , description: Costing information from both the GL and Process Manufacturing costing tables. , implementation_dba_data: APPS.PMIFV_GL_CM_COST_COMPARISON_V ,
-
View: CM_CLDR_MST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMF.CM_CLDR_MST_V, object_name:CM_CLDR_MST_V, status:VALID, product: GMF - Process Manufacturing Financials , description: View on period statuses & calendars , implementation_dba_data: APPS.CM_CLDR_MST_V ,
-
VIEW: APPS.PMIFV_ITEM_COST_FROM_GL_V
12.1.1
-
VIEW: APPS.PMIFV_ITEM_COST_V
12.1.1
-
VIEW: APPS.PMIFV_ITEM_COST_V
12.2.2
-
VIEW: APPS.PMIFV_ITEM_COST_FROM_GL_V
12.2.2
-
View: PMIBV_COSTCAL_LOV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMIBV_COSTCAL_LOV_V, object_name:PMIBV_COSTCAL_LOV_V, status:VALID, product: PMI - Process Manufacturing Intelligence (Obsolete) , description: PMI LOV View for Cost Calendar , implementation_dba_data: APPS.PMIBV_COSTCAL_LOV_V ,
-
PACKAGE BODY: APPS.GMF_COPY_PERCENTAGE_BURDEN
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMF_COPY_PERCENTAGE_BURDEN, status:VALID,
-
View: PMIBV_COSTCAL_LOV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMIBV_COSTCAL_LOV_V, object_name:PMIBV_COSTCAL_LOV_V, status:VALID, product: PMI - Process Manufacturing Intelligence , description: PMI LOV View for Cost Calendar , implementation_dba_data: APPS.PMIBV_COSTCAL_LOV_V ,
-
APPS.GMF_CMR11USR_XMLP_PKG SQL Statements
12.1.1
-
View: CM_CLDR_MST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMF.CM_CLDR_MST_V, object_name:CM_CLDR_MST_V, status:VALID, product: GMF - Process Manufacturing Financials , description: View on period statuses & calendars , implementation_dba_data: APPS.CM_CLDR_MST_V ,
-
APPS.GMF_CMR11USR_XMLP_PKG SQL Statements
12.2.2
-
PACKAGE: APPS.GMF_COPY_PERCENTAGE_BURDEN
12.1.1
owner:APPS, object_type:PACKAGE, object_name:GMF_COPY_PERCENTAGE_BURDEN, status:VALID,
-
PACKAGE: APPS.GMF_COPY_PERCENTAGE_BURDEN
12.2.2
owner:APPS, object_type:PACKAGE, object_name:GMF_COPY_PERCENTAGE_BURDEN, status:VALID,
-
PACKAGE BODY: APPS.GMF_VALIDATIONS_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMF_VALIDATIONS_PVT, status:VALID,
-
PACKAGE BODY: APPS.OPI_OPM_COMMON_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OPI_OPM_COMMON_PKG, status:VALID,
-
PACKAGE BODY: APPS.OPI_PMI_COST
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OPI_PMI_COST, status:VALID,
-
PACKAGE BODY: APPS.GMF_COPY_PERCENTAGE_BURDEN
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GMF_COPY_PERCENTAGE_BURDEN, status:VALID,
-
PACKAGE BODY: APPS.GMF_CMR11USR_XMLP_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GMF_CMR11USR_XMLP_PKG, status:VALID,
-
PACKAGE: APPS.GMF_BURDENDETAILS_PUB
12.2.2
owner:APPS, object_type:PACKAGE, object_name:GMF_BURDENDETAILS_PUB, status:VALID,
-
PACKAGE BODY: APPS.GMF_CMR11USR_XMLP_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMF_CMR11USR_XMLP_PKG, status:VALID,
-
SYNONYM: APPS.CM_CLDR_HDR
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CM_CLDR_HDR, status:VALID,
-
VIEW: APPS.PMIBV_FORMULA_COST_V
12.2.2
-
PACKAGE BODY: APPS.PMI_COST_ANALZ_PACK
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PMI_COST_ANALZ_PACK, status:VALID,
-
VIEW: APPS.PMIBV_COSTCAL_LOV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMIBV_COSTCAL_LOV_V, object_name:PMIBV_COSTCAL_LOV_V, status:VALID,
-
Table: CM_CLDR_DTL
12.1.1
owner:GMF, object_type:TABLE, fnd_design_data:GMF.CM_CLDR_DTL, object_name:CM_CLDR_DTL, status:VALID, product: GMF - Process Manufacturing Financials , description: Costing Calendar Details , implementation_dba_data: GMF.CM_CLDR_DTL ,
-
PACKAGE BODY: APPS.PMI_COST_ANALZ_PACK
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PMI_COST_ANALZ_PACK, status:VALID,
-
SYNONYM: APPS.CM_CLDR_HDR
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CM_CLDR_HDR, status:VALID,
-
Table: 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, product: GMF - Process Manufacturing Financials , description: Item Cost Methods - Cost methods are defined by the user. Cost calculation types for raw material and product costs are also specified for Actual Costing Methods. , implementation_dba_data: GMF.CM_MTHD_MST ,
-
Table: 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, product: GMF - Process Manufacturing Financials , description: Item Cost Methods - Cost methods are defined by the user. Cost calculation types for raw material and product costs are also specified for Actual Costing Methods. , implementation_dba_data: GMF.CM_MTHD_MST ,
-
Table: CM_TEXT_HDR
12.2.2
owner:GMF, object_type:TABLE, fnd_design_data:GMF.CM_TEXT_HDR, object_name:CM_TEXT_HDR, status:VALID, product: GMF - Process Manufacturing Financials , description: Header information for Text entered through Edit Text option , implementation_dba_data: GMF.CM_TEXT_HDR ,
-
Table: CM_TEXT_HDR
12.1.1
owner:GMF, object_type:TABLE, fnd_design_data:GMF.CM_TEXT_HDR, object_name:CM_TEXT_HDR, status:VALID, product: GMF - Process Manufacturing Financials , description: Header information for Text entered through Edit Text option , implementation_dba_data: GMF.CM_TEXT_HDR ,
-
Table: CM_CLDR_DTL
12.2.2
owner:GMF, object_type:TABLE, fnd_design_data:GMF.CM_CLDR_DTL, object_name:CM_CLDR_DTL, status:VALID, product: GMF - Process Manufacturing Financials , description: Costing Calendar Details , implementation_dba_data: GMF.CM_CLDR_DTL ,