Search Results cm_alpr_ctl
Overview
The CM_ALPR_CTL table is a core control table within the Process Manufacturing Financials (GMF) module of Oracle E-Business Suite (EBS). It serves as a master record for managing and tracking the execution of the cost allocation process. The table's primary role is to store the critical period and calendar parameters that define a specific cost allocation run, ensuring that cost distribution activities are correctly synchronized with the organization's fiscal and costing accounting periods. By maintaining this control information, the table provides an audit trail and prevents conflicting or duplicate allocation processes for the same accounting period.
Key Information Stored
The table's structure centers on the combination of its primary key columns, which uniquely identify a control record for a cost allocation process. The key columns, as defined by the primary key CM_ALPR_CTL_PK, are CALENDAR_CODE and PERIOD_CODE, which reference the costing calendar, and GL_FISCAL_YR and GL_PERIOD, which reference the general ledger fiscal period. This dual-period linkage is essential in manufacturing costing, where the operational costing period (cost calendar) must be correctly mapped to the financial reporting period (GL calendar). The table likely contains additional control columns, such as status flags (e.g., PROCESS_STATUS), process dates, and request IDs, to manage the workflow of the allocation job, though these are implied by its described purpose as a process control table.
Common Use Cases and Queries
The primary use case is initiating and monitoring the cost allocation process for a given period. A typical query would check for existing processes before submitting a new one to avoid conflicts. For example, a consultant might use SQL to verify if an allocation is already in progress for a specific costing period. Reporting use cases include generating a history of allocation runs for audit purposes or troubleshooting errors by examining the control parameters of failed jobs. A common SQL pattern involves joining this table to period and calendar description tables for more readable reports.
- Check Allocation Status for a Period: SELECT * FROM GMF.CM_ALPR_CTL WHERE CALENDAR_CODE = '&CAL' AND PERIOD_CODE = '&PER' AND GL_FISCAL_YR = '&FY';
- Find Recent Allocation Runs: SELECT CALENDAR_CODE, PERIOD_CODE, GL_FISCAL_YR, GL_PERIOD, LAST_UPDATE_DATE FROM GMF.CM_ALPR_CTL ORDER BY LAST_UPDATE_DATE DESC;
Related Objects
The CM_ALPR_CTL table has defined referential integrity within the GMF schema. Its most direct relationship is via a foreign key to the CM_CLDR_DTL (Cost Calendar Detail) table, using the CALENDAR_CODE and PERIOD_CODE columns. This ensures that any allocation process is defined for a valid, existing costing period. As a control table, it is intrinsically linked to the underlying engine and programs that perform the cost allocation calculations (likely concurrent programs or packages). The data populated into this table ultimately drives the population of detailed cost allocation journal lines into subsidiary tables, which are then transferred to the General Ledger.
-
Table: CM_ALPR_CTL
12.2.2
owner:GMF, object_type:TABLE, fnd_design_data:GMF.CM_ALPR_CTL, object_name:CM_ALPR_CTL, status:VALID, product: GMF - Process Manufacturing Financials , description: Cost Allocation Process Control Table - Contains the process information such as Fiscal Year and Period, Costing Calendar and Period. , implementation_dba_data: GMF.CM_ALPR_CTL ,
-
Table: CM_ALPR_CTL
12.1.1
owner:GMF, object_type:TABLE, fnd_design_data:GMF.CM_ALPR_CTL, object_name:CM_ALPR_CTL, status:VALID, product: GMF - Process Manufacturing Financials , description: Cost Allocation Process Control Table - Contains the process information such as Fiscal Year and Period, Costing Calendar and Period. , implementation_dba_data: GMF.CM_ALPR_CTL ,
-
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 ,
-
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 ,