Search Results css_def_statuses_b
Overview
The CSS_DEF_STATUSES_B table is a core reference table within the obsolete Oracle E-Business Suite Support (CSS) module. Its primary function is to serve as a master repository for Reason codes, which are also referred to as Phase Statuses. These statuses are critical for tracking the lifecycle of support tickets, specifically Defects and Enhancements. When a user selects a Reason from this table, it can dynamically affect the attributes and available workflow paths for a given Defect or Enhancement record, enabling structured status transitions and audit trails.
Key Information Stored
While the provided metadata does not list specific columns beyond the primary key, the table's structure is defined by its purpose. The central column is STATUS_ID, which serves as the unique numeric identifier (primary key) for each Reason or Phase Status record. Typical columns in such a reference table would include a code (STATUS_CODE), a name (STATUS_NAME or MEANING), a description, an effective start and end date for enabling/disabling statuses, and potentially a sequence number for ordering. The table stores the discrete list of valid states a support item can be in during its resolution process.
Common Use Cases and Queries
The primary use case is to populate list of values (LOVs) in the application's user interface for the Status field on Defect and Enhancement forms. It is also essential for generating historical reports on defect state changes. A common query would join this table to defect records to translate the STATUS_ID into a human-readable name for reporting.
- Sample Query for Active Statuses: SELECT STATUS_ID, MEANING FROM CSS_DEF_STATUSES_B WHERE SYSDATE BETWEEN START_DATE_ACTIVE AND NVL(END_DATE_ACTIVE, SYSDATE) ORDER BY SEQUENCE_NUMBER;
- Reporting Join: SELECT d.DEFECT_NUMBER, s.MEANING AS STATUS FROM CSS_DEF_DEFECTS_B d, CSS_DEF_STATUSES_B s WHERE d.STATUS_ID = s.STATUS_ID;
Related Objects
CSS_DEF_STATUSES_B is referenced as a parent table in several key transactional and audit tables within the CSS module, as documented by its foreign key relationships.
- CSS_DEF_DEFECTS_B: The main defects table stores the current STATUS_ID (CSS_DEF_DEFECTS_B.STATUS_ID) for each defect, linking it directly to this reference table.
- CSS_DEF_AUDIT_HISTORY_B: This audit history table records STATUS_ID (CSS_DEF_AUDIT_HISTORY_B.STATUS_ID) changes over time, creating a trail of status transitions for defects and enhancements.
- CSS_DEF_PHASE_STATUSES: This table likely defines valid statuses within specific phases, referencing CSS_DEF_STATUSES_B.STATUS_ID (via CSS_DEF_PHASE_STATUSES.STATUS_ID) to establish allowed status values.
It is crucial to note the metadata states this table is "Not implemented in this database," indicating it may exist in the data model but not be populated or actively used in all deployments, a common situation with obsolete modules.
-
Table: CSS_DEF_STATUSES_B
12.2.2
product: CSS - Support (Obsolete) , description: The table store Reasons (Phases Statuses). Attributes of the Defect or Enhancement may be effected by selecting a Reason. , implementation_dba_data: Not implemented in this database ,
-
Table: CSS_DEF_STATUSES_B
12.1.1
product: CSS - Support (obsolete) , description: The table store Reasons (Phases Statuses). Attributes of the Defect or Enhancement may be effected by selecting a Reason. , implementation_dba_data: Not implemented in this database ,
-
12.2.2 FND Design Data
12.2.2
-
Table: CSS_DEF_PHASE_STATUSES
12.2.2
product: CSS - Support (Obsolete) , description: Intersection table between CSS_DEF_PHASES_B and CSS_DEF_REASONS_B. This maps a Reason (Phases Status) to a Phase. , implementation_dba_data: Not implemented in this database ,
-
Table: CSS_DEF_PHASE_STATUSES
12.1.1
product: CSS - Support (obsolete) , description: Intersection table between CSS_DEF_PHASES_B and CSS_DEF_REASONS_B. This maps a Reason (Phases Status) to a Phase. , implementation_dba_data: Not implemented in this database ,
-
Table: CSS_DEF_AUDIT_HISTORY_B
12.1.1
product: CSS - Support (obsolete) , implementation_dba_data: Not implemented in this database ,
-
Table: CSS_DEF_AUDIT_HISTORY_B
12.2.2
product: CSS - Support (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
Table: CSS_DEF_DEFECTS_B
12.2.2
product: CSS - Support (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
12.1.1 FND Design Data
12.1.1
-
Table: CSS_DEF_DEFECTS_B
12.1.1
product: CSS - Support (obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: CSS_DEF_STATUSES_VL
12.1.1
product: CSS - Support (obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: CSS_DEF_STATUSES_VL
12.2.2
product: CSS - Support (Obsolete) , implementation_dba_data: Not implemented in this database ,