Search Results css_def_priorities_b_pk
Overview
The CSS_DEF_PRIORITIES_B table is a reference data object within the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2, specifically for the CSS - Support module, which is documented as obsolete. Its core function is to serve as a master list for defect and enhancement priority codes. These codes provide a standardized indication of the internal business priority for resolving reported issues, enabling consistent prioritization and workflow management across the support system. As a foundational reference table, it ensures data integrity by centralizing valid priority values, which are then referenced by transactional tables via foreign key relationships.
Key Information Stored
Based on the provided metadata, the primary column for this table is the PRIORITY_ID, which serves as the unique identifier for each priority record and is the primary key for the CSS_DEF_PRIORITIES_B_PK constraint. While the specific descriptive columns (such as a name or description field) are not detailed in the excerpt, reference tables of this nature in EBS typically include columns like MEANING, DESCRIPTION, or ENABLED_FLAG to store the human-readable value and control its active status. The table's structure is designed to support multilingual environments through a corresponding _TL (Translation) table, though that relationship is not explicitly listed in the provided data.
Common Use Cases and Queries
The primary use case for this table is to populate list of values (LOV) components in application forms for setting or updating a defect's priority. It is also critical for generating reports that analyze defect resolution trends by priority level. A common query would involve joining this table to defect transactional data to produce a readable report. For example, to list all defects with their priority description, one might use a SQL pattern such as:
- SELECT d.DEFECT_NUMBER, p.MEANING AS PRIORITY
- FROM CSS_DEF_DEFECTS_B d, CSS_DEF_PRIORITIES_B p
- WHERE d.PRIORITY_ID = p.PRIORITY_ID;
Given the module's obsolete status, direct interaction with this table is typically limited to legacy data support or migration activities.
Related Objects
The table maintains defined foreign key relationships with key transactional tables in the Support module, as documented in the ETRM metadata. These relationships enforce referential integrity, ensuring that a priority assigned to a defect or audit history record exists in the master priorities table.
- CSS_DEF_DEFECTS_B: The main defects table references CSS_DEF_PRIORITIES_B via its PRIORITY_ID column. This links each defect record to a valid priority code.
- CSS_DEF_AUDIT_HISTORY_B: The audit history table also references CSS_DEF_PRIORITIES_B via its PRIORITY_ID column, likely to track historical changes to a defect's priority over time.
The primary key column, PRIORITY_ID, is the join column for both of these documented relationships.
-
Table: CSS_DEF_PRIORITIES_B
12.2.2
product: CSS - Support (Obsolete) , description: A reference table for Defect Priority. The priority of a Defect or Enhancement is an indication of the internal priority for resolving the Defect or Enhancement. , implementation_dba_data: Not implemented in this database ,