Search Results gmf_period_statuses
Overview
GMF.GMF_PERIOD_STATUSES is a Process Manufacturing Financials (GMF) table that stores cost period statuses for a combination of Legal Entity and Cost Type. In Oracle EBS 12.1.1 and 12.2.2, it functions as the operational control record for the Process Manufacturing cost calendar: each row defines a discrete accounting period for a given legal entity and cost type, along with its start date, end date, and open/closed status. Downstream costing, cost rollup, period close, and inventory valuation processes in Process Manufacturing consult this table to determine whether transactions may be costed or posted into a given period.
The table is owned by the GMF schema and is documented with 46 columns. The metadata's heuristic Data Vault classification, mined from foreign key structure, is standalone. This suggests a modeling interpretation in which GMF_PERIOD_STATUSES behaves as a self-contained reference/status entity rather than as a dependent satellite or a resolving link. Its foreign keys reference other master data (FV_LEGAL_ENTITIES and CST_COST_TYPES) without any inbound reference pointing to it, reinforcing its role as a controlling reference table.
Key Information Stored
The most significant columns fall into three groups: identity, period definition, and status.
- PERIOD_ID — surrogate primary key of the row. It is the single-column target of unique index
GMF_PERIOD_STATUSES_U1. - LEGAL_ENTITY_ID — foreign key to
FV_LEGAL_ENTITIES, identifying the legal entity whose books the period belongs to. - COST_TYPE_ID — foreign key to
CST_COST_TYPES, identifying the costing method (e.g., frozen, average) the period applies to. - CALENDAR_CODE — the accounting calendar that defines the period structure.
- PERIOD_CODE — the period name (e.g., a month or week label) within that calendar.
- START_DATE and END_DATE — the effective date bounds of the period.
- PERIOD_STATUS — the open/closed indicator that governs whether cost transactions may be processed.
- TEXT_CODE — a descriptive or reference code accompanying the period.
- DELETE_MARK — the standard soft-delete flag used throughout EBS.
- CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN — the standard EBS WHO columns tracking audit and user attribution.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1–ATTRIBUTE30 — the descriptive flexfield (DFF) columns, allowing client-specific extensions without schema change.
The business-key candidate is the composite unique index GMF_PERIOD_STATUSES_U2 on (LEGAL_ENTITY_ID, COST_TYPE_ID, CALENDAR_CODE, PERIOD_CODE). This confirms that a period is uniquely identified not by its surrogate ID alone, but by the combination of legal entity, cost type, calendar, and period code.
Common Use Cases and Queries
Typical reporting and integration scenarios include determining which periods are currently open, retrieving date ranges for costing windows, and reconciling cost periods against the general ledger calendar.
To list open periods for a given legal entity and cost type:
SELECT period_code, start_date, end_date, period_status
FROM gmf.gmf_period_statuses
WHERE legal_entity_id = :legal_entity_id
AND cost_type_id = :cost_type_id
AND calendar_code = :calendar_code
AND period_status = 'O'
ORDER BY start_date;
To find the period spanning a transaction date:
SELECT period_code, period_status
FROM gmf.gmf_period_statuses
WHERE legal_entity_id = :legal_entity_id
AND cost_type_id = :cost_type_id
AND :txn_date BETWEEN start_date AND end_date;
Reporting use cases include open-period audit reports, period-close dashboards spanning all legal entities, and validation queries that flag transactions posting outside any defined period (i.e., no matching row).
Related Objects
- FV_LEGAL_ENTITIES — joined via
GMF_PERIOD_STATUSES.LEGAL_ENTITY_ID = FV_LEGAL_ENTITIES.LEGAL_ENTITY_ID; supplies legal entity name and attributes. - CST_COST_TYPES — joined via
GMF_PERIOD_STATUSES.COST_TYPE_ID = CST_COST_TYPES.COST_TYPE_ID; supplies cost type description and costing method. - GMF_PERIOD_BALANCES — the period balance table that shares the legal entity/cost type/calendar/period key and relies on
GMF_PERIOD_STATUSESto know whether a period is open. - GMF_COST_ITEMS / GMF_ITEM_COSTS — costing results that are valid only for periods whose status is open.
- GL_PERIOD_STATUSES — the General Ledger equivalent, commonly compared against GMF periods during close reconciliation.
- MTL_TRANSACTIONS / MTL_MATERIAL_TRANSACTIONS — inventory transactions that are validated against the effective cost period.
- GMF_PERIOD_CLOSING / period-close concurrent programs — processes that update
PERIOD_STATUSwhen a period is opened or closed.
-
Table: GMF_PERIOD_STATUSES
12.1.1
owner:GMF, object_type:TABLE, fnd_design_data:GMF.GMF_PERIOD_STATUSES, object_name:GMF_PERIOD_STATUSES, status:VALID, product: GMF - Process Manufacturing Financials , description: Cost Period statuses for a Legal Entity & Cost Type , implementation_dba_data: GMF.GMF_PERIOD_STATUSES ,
-
Table: GMF_PERIOD_STATUSES
12.2.2
owner:GMF, object_type:TABLE, fnd_design_data:GMF.GMF_PERIOD_STATUSES, object_name:GMF_PERIOD_STATUSES, status:VALID, product: GMF - Process Manufacturing Financials , description: Cost Period statuses for a Legal Entity & Cost Type , implementation_dba_data: GMF.GMF_PERIOD_STATUSES ,
-
VIEW: APPS.CM_ACST_LED_V
12.1.1
-
VIEW: APPS.CM_ACST_LED_V
12.2.2
-
VIEW: APPS.CM_RSRC_DTL_V
12.1.1
-
VIEW: APPS.CM_CLDR_MST_V
12.1.1
-
VIEW: APPS.CM_RSRC_DTL_V
12.2.2
-
VIEW: APPS.CM_CMPT_DTL_VW1
12.2.2
-
VIEW: APPS.CM_CLDR_MST_V
12.2.2
-
APPS.GMF_COPY_ITEM_COST SQL Statements
12.2.2
-
VIEW: APPS.CM_CMPT_DTL_VW1
12.1.1
-
SYNONYM: APPS.GMF_PERIOD_STATUSES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:GMF_PERIOD_STATUSES, status:VALID,
-
VIEW: GMF.GMF_PERIOD_STATUSES#
12.2.2
owner:GMF, object_type:VIEW, object_name:GMF_PERIOD_STATUSES#, status:VALID,
-
APPS.GMF_SUBLEDGER_PKG SQL Statements
12.1.1
-
APPS.GMF_COPY_ITEM_COST SQL Statements
12.1.1
-
SYNONYM: APPS.GMF_PERIOD_STATUSES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:GMF_PERIOD_STATUSES, status:VALID,
-
VIEW: APPS.GMF_XLA_PAYABLES_INVOICES_V
12.2.2
-
VIEW: APPS.GMF_XLA_ACTCOST_ADJS_V
12.1.1
-
VIEW: APPS.GMF_XLA_ACTCOST_ADJS_V
12.2.2
-
APPS.GMF_SUBLEDGER_PKG SQL Statements
12.2.2
-
VIEW: GMF.GMF_PERIOD_STATUSES#
12.2.2
-
View: CM_ACST_LED_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMF.CM_ACST_LED_V, object_name:CM_ACST_LED_V, status:VALID, product: GMF - Process Manufacturing Financials , description: Acquisition cost LED view , implementation_dba_data: APPS.CM_ACST_LED_V ,
-
VIEW: APPS.GMF_XLA_PAYABLES_INVOICES_V
12.1.1
-
12.2.2 DBA Data
12.2.2
-
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 ,
-
12.1.1 DBA Data
12.1.1
-
View: CM_ACST_LED_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMF.CM_ACST_LED_V, object_name:CM_ACST_LED_V, status:VALID, product: GMF - Process Manufacturing Financials , description: Acquisition cost LED view , implementation_dba_data: APPS.CM_ACST_LED_V ,
-
View: CM_RSRC_DTL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMF.CM_RSRC_DTL_V, object_name:CM_RSRC_DTL_V, status:VALID, product: GMF - Process Manufacturing Financials , description: View to enable master-detail relationship on Resource Costs form , implementation_dba_data: APPS.CM_RSRC_DTL_V ,
-
PACKAGE: APPS.GMF_COPY_ITEM_COST
12.2.2
owner:APPS, object_type:PACKAGE, object_name:GMF_COPY_ITEM_COST, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
APPS.GMF_PROCESS_COST_PUB SQL Statements
12.1.1
-
PACKAGE BODY: APPS.GMF_PROCESS_COST_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMF_PROCESS_COST_PUB, status:VALID,
-
PACKAGE BODY: APPS.GMF_CMR05USR_XMLP_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMF_CMR05USR_XMLP_PKG, status:VALID,
-
PACKAGE BODY: APPS.GMF_BATCH_VALIDATIONS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMF_BATCH_VALIDATIONS, status:VALID,
-
PACKAGE BODY: APPS.GMF_CBOM_REP_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMF_CBOM_REP_PKG, 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 ,
-
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: CM_RSRC_DTL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMF.CM_RSRC_DTL_V, object_name:CM_RSRC_DTL_V, status:VALID, product: GMF - Process Manufacturing Financials , description: View to enable master-detail relationship on Resource Costs form , implementation_dba_data: APPS.CM_RSRC_DTL_V ,
-
PACKAGE BODY: APPS.GMF_PROCESS_COST_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GMF_PROCESS_COST_PUB, status:VALID,
-
APPS.GMF_PROCESS_COST_PUB SQL Statements
12.2.2
-
PACKAGE: APPS.GMF_BURDENDETAILS_PUB
12.2.2
owner:APPS, object_type:PACKAGE, object_name:GMF_BURDENDETAILS_PUB, status:VALID,
-
PACKAGE BODY: APPS.GMF_CBOM_REP_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GMF_CBOM_REP_PKG, status:VALID,
-
TRIGGER: APPS.GMD_COSTING_STATUS_UPD_T1
12.1.1
owner:APPS, object_type:TRIGGER, object_name:GMD_COSTING_STATUS_UPD_T1, status:VALID,
-
TRIGGER: APPS.GMD_COSTING_STATUS_UPD_T1
12.2.2
owner:APPS, object_type:TRIGGER, object_name:GMD_COSTING_STATUS_UPD_T1, status:VALID,
-
APPS.GMF_CMR05USR_XMLP_PKG SQL Statements
12.1.1
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.GMF_ORGANIZATIONS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMF_ORGANIZATIONS_PKG, status:VALID,
-
APPS.GMF_CMR12USR_XMLP_PKG SQL Statements
12.1.1
-
APPS.GMF_CMR12USR_XMLP_PKG SQL Statements
12.2.2
-
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 ,