Search Results cst_mgd_infl_adj_per_statuses
Overview
The CST_MGD_INFL_ADJ_PER_STATUSES table is a Bills of Material (BOM) schema object within Oracle E-Business Suite that stores the inflation adjustment status for each accounting period, scoped by inventory organization. It functions as the period-level control record for the Cost Management "managed inflation adjustment" process, indicating whether inflation adjustments have been processed, are pending, or are otherwise incomplete for a given organization and period combination.
The table resides in the BOM schema and is documented as VALID in both Oracle EBS 12.1.1 and 12.2.2. The documented physical schema lists 12 columns. The primary key, CST_MGD_INFL_ADJ_PER_STATUS_PK, is composed of ORGANIZATION_ID and ACCT_PERIOD_ID. A unique index, CST_MGD_INFL_ADJ_PER_STATUS_U1, enforces the same (ORGANIZATION_ID, ACCT_PERIOD_ID) combination as a business-key candidate.
From a heuristic Data Vault modeling perspective, the FK structure classifies this table as satellite-leaning. Its natural grain — one record per organization per accounting period, dependent on the ORG_ACCT_PERIODS parent — makes it a descriptor-bearing satellite rather than a hub or link.
Key Information Stored
The 12 documented columns capture both the business key and standard Oracle WHO-column audit metadata, along with the operational status flag:
- ORGANIZATION_ID — Inventory organization identifier; part of the composite primary key and the business-key unique index.
- ACCT_PERIOD_ID — Accounting period identifier; also part of the primary key and unique index, and the FK to
ORG_ACCT_PERIODS. - STATUS — The inflation adjustment status flag for the organization/period combination; the principal functional payload of the row.
- LAST_UPDATE_DATE — Timestamp of the most recent row modification.
- LAST_UPDATED_BY — User ID that last modified the record.
- CREATION_DATE — Timestamp when the status record was created.
- CREATED_BY — User ID that created the record.
- LAST_UPDATE_LOGIN — Login identifier associated with the last update.
- REQUEST_ID — Concurrent request ID that processed or updated the status.
- PROGRAM_APPLICATION_ID — Application owning the program that last touched the row.
- PROGRAM_ID — Concurrent program identifier.
- PROGRAM_UPDATE_DATE — Date the owning program last updated the row.
The surrogate-style audit columns (REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE) allow tracing the exact concurrent process responsible for a status change, which is essential for reconciliation and audit.
Common Use Cases and Queries
Typical usage centers on determining whether inflation adjustments have completed for an organization and period before downstream costing runs proceed. A common diagnostic query joins the status table to the period definition:
- Period readiness check — Verify the
STATUSvalue for a given organization and period prior to running inflation or cost rollup processes. - Reconciliation reporting — Correlate the concurrent
REQUEST_IDwith request history to confirm which job set the status. - Audit trail — Track
LAST_UPDATED_BYandLAST_UPDATE_DATEto establish who last altered the inflation status.
A representative query pattern selects the status alongside the accounting period name through ORG_ACCT_PERIODS, filtered by ORGANIZATION_ID and ACCT_PERIOD_ID. Because (ORGANIZATION_ID, ACCT_PERIOD_ID) is unique, lookups by this pair return a single row, making the pattern efficient for point-in-time checks.
Related Objects
- ORG_ACCT_PERIODS — Parent table; joined on
CST_MGD_INFL_ADJ_PER_STATUSES.ACCT_PERIOD_ID = ORG_ACCT_PERIODS.ACCT_PERIOD_IDandORGANIZATION_ID. Supplies period name, start date, and end date. - ORG_ORGANIZATION_DEFINITIONS — Provides organization name and code for reporting on
ORGANIZATION_ID. - CST_MGD_INFL_ADJUSTMENTS — Related Cost Management inflation adjustment data typically consumed alongside this status.
- FND_CONCURRENT_REQUESTS — Resolves
REQUEST_IDto the concurrent program name and run details. - FND_USER — Resolves
CREATED_BYandLAST_UPDATED_BYto user names.
These relationships give developers and analysts a complete picture of inflation adjustment state per organization and period.
-
Table: CST_MGD_INFL_ADJ_PER_STATUSES
12.1.1
owner:BOM, object_type:TABLE, fnd_design_data:BOM.CST_MGD_INFL_ADJ_PER_STATUSES, object_name:CST_MGD_INFL_ADJ_PER_STATUSES, status:VALID, product: BOM - Bills of Material , description: Stores inflation status for each period. , implementation_dba_data: BOM.CST_MGD_INFL_ADJ_PER_STATUSES ,
-
Table: CST_MGD_INFL_ADJ_PER_STATUSES
12.2.2
owner:BOM, object_type:TABLE, fnd_design_data:BOM.CST_MGD_INFL_ADJ_PER_STATUSES, object_name:CST_MGD_INFL_ADJ_PER_STATUSES, status:VALID, product: BOM - Bills of Material , description: Stores inflation status for each period. , implementation_dba_data: BOM.CST_MGD_INFL_ADJ_PER_STATUSES ,
-
APPS.CST_MGD_INFL_ADJUSTMENT_PUB SQL Statements
12.2.2
-
TABLE: BOM.CST_MGD_INFL_ADJ_PER_STATUSES
12.2.2
owner:BOM, object_type:TABLE, fnd_design_data:BOM.CST_MGD_INFL_ADJ_PER_STATUSES, object_name:CST_MGD_INFL_ADJ_PER_STATUSES, status:VALID,
-
TABLE: BOM.CST_MGD_INFL_ADJ_PER_STATUSES
12.1.1
owner:BOM, object_type:TABLE, fnd_design_data:BOM.CST_MGD_INFL_ADJ_PER_STATUSES, object_name:CST_MGD_INFL_ADJ_PER_STATUSES, status:VALID,
-
VIEW: BOM.CST_MGD_INFL_ADJ_PER_STATUSES#
12.2.2
owner:BOM, object_type:VIEW, object_name:CST_MGD_INFL_ADJ_PER_STATUSES#, status:VALID,
-
APPS.CST_MGD_INFL_ADJUSTMENT_PUB SQL Statements
12.1.1
-
SYNONYM: APPS.CST_MGD_INFL_ADJ_PER_STATUSES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CST_MGD_INFL_ADJ_PER_STATUSES, status:VALID,
-
SYNONYM: APPS.CST_MGD_INFL_ADJ_PER_STATUSES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CST_MGD_INFL_ADJ_PER_STATUSES, status:VALID,
-
VIEW: BOM.CST_MGD_INFL_ADJ_PER_STATUSES#
12.2.2
-
APPS.CST_MGD_INFL_ADJUSTMENT_CP SQL Statements
12.2.2
-
APPS.CST_MGD_INFL_ADJUSTMENT_CP SQL Statements
12.1.1
-
PACKAGE BODY: APPS.CST_MGD_INFL_ADJUSTMENT_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CST_MGD_INFL_ADJUSTMENT_PUB, status:VALID,
-
PACKAGE BODY: APPS.CST_MGD_INFL_ADJUSTMENT_CP
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CST_MGD_INFL_ADJUSTMENT_CP, status:VALID,
-
PACKAGE BODY: APPS.CST_MGD_INFL_ADJUSTMENT_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CST_MGD_INFL_ADJUSTMENT_PVT, status:VALID,
-
PACKAGE BODY: APPS.CST_MGD_INFL_ADJUSTMENT_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CST_MGD_INFL_ADJUSTMENT_PVT, status:VALID,
-
PACKAGE BODY: APPS.CST_MGD_INFL_ADJUSTMENT_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CST_MGD_INFL_ADJUSTMENT_PUB, status:VALID,
-
PACKAGE BODY: APPS.CST_MGD_INFL_ADJUSTMENT_CP
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CST_MGD_INFL_ADJUSTMENT_CP, status:VALID,
-
Table: ORG_ACCT_PERIODS
12.1.1
owner:INV, object_type:TABLE, fnd_design_data:INV.ORG_ACCT_PERIODS, object_name:ORG_ACCT_PERIODS, status:VALID, product: INV - Inventory , description: Organization accounting period definition table , implementation_dba_data: INV.ORG_ACCT_PERIODS ,
-
Table: ORG_ACCT_PERIODS
12.2.2
owner:INV, object_type:TABLE, fnd_design_data:INV.ORG_ACCT_PERIODS, object_name:ORG_ACCT_PERIODS, status:VALID, product: INV - Inventory , description: Organization accounting period definition table , implementation_dba_data: INV.ORG_ACCT_PERIODS ,
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.CST_MGD_INFL_ADJUSTMENT_PUB
12.1.1
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.CST_MGD_INFL_ADJUSTMENT_PUB
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
APPS.CST_MGD_INFL_ADJUSTMENT_PVT SQL Statements
12.1.1
-
12.2.2 DBA Data
12.2.2
-
APPS.CST_MGD_INFL_ADJUSTMENT_PVT SQL Statements
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.CST_MGD_INFL_ADJUSTMENT_CP
12.1.1
-
PACKAGE BODY: APPS.CST_MGD_INFL_ADJUSTMENT_CP
12.2.2
-
APPS.CST_MGD_INFL_ADJUSTMENT_PUB dependencies on CST_MGD_INFL_ADJ_PER_STATUSES
12.2.2
-
APPS.CST_MGD_INFL_ADJUSTMENT_PVT dependencies on CST_MGD_INFL_ADJ_PER_STATUSES
12.1.1
-
APPS.CST_MGD_INFL_ADJUSTMENT_PVT dependencies on CST_MGD_INFL_ADJ_PER_STATUSES
12.2.2
-
APPS.CST_MGD_INFL_ADJUSTMENT_CP dependencies on CST_MGD_INFL_ADJ_PER_STATUSES
12.2.2
-
APPS.CST_MGD_INFL_ADJUSTMENT_CP dependencies on CST_MGD_INFL_ADJ_PER_STATUSES
12.1.1
-
APPS.CST_MGD_INFL_ADJUSTMENT_PUB dependencies on CST_MGD_INFL_ADJ_PER_STATUSES
12.1.1
-
APPS.CST_MGD_INFL_ADJUSTMENT_PUB dependencies on CST_MGD_INFL_TSF_ORG_ENTRIES
12.2.2
-
APPS.CST_MGD_INFL_ADJUSTMENT_PUB dependencies on CST_MGD_INFL_TSF_ORG_ENTRIES
12.1.1
-
PACKAGE BODY: APPS.CST_MGD_INFL_ADJUSTMENT_PVT
12.2.2
-
APPS.CST_MGD_INFL_ADJUSTMENT_CP dependencies on ORG_ACCT_PERIODS
12.2.2
-
PACKAGE BODY: APPS.CST_MGD_INFL_ADJUSTMENT_PVT
12.1.1
-
APPS.CST_MGD_INFL_ADJUSTMENT_CP dependencies on ORG_ACCT_PERIODS
12.1.1
-
APPS.CST_MGD_INFL_ADJUSTMENT_PUB dependencies on CST_MGD_INFL_ADJUSTED_COSTS
12.2.2
-
APPS.CST_MGD_INFL_ADJUSTMENT_PUB dependencies on CST_MGD_INFL_ADJUSTED_COSTS
12.1.1