Search Results special_attribute_id
Overview
The PQH_SPECIAL_ATTRIBUTES table is a core data object within the Oracle E-Business Suite (EBS) Public Sector Human Resources (PQH) module. It functions as a control table that identifies and manages specific transaction attributes designated for special processing or functional behavior. Its primary role is to flag certain attributes within the complex HR transaction framework, enabling specialized system logic, validation, or data handling that deviates from standard processing rules. This table is integral to the configuration and operation of advanced public sector HR features, particularly those involving complex transaction approvals, data replication, and context-sensitive attribute management.
Key Information Stored
The table's structure centers on linking a special attribute definition to its associated transactional context. While the full column list is not detailed in the provided metadata, the documented foreign keys and primary key reveal its critical components. The SPECIAL_ATTRIBUTE_ID column serves as the unique primary key identifier for each record. The TXN_CATEGORY_ATTRIBUTE_ID column is a foreign key that links the special attribute to a specific attribute within a transaction category, as defined in the PQH_TXN_CATEGORY_ATTRIBUTES table. This establishes which transactional attribute is flagged for special treatment. Furthermore, the CONTEXT column is a foreign key referencing the PQH_COPY_ENTITY_CONTEXTS table, indicating the specific data replication or processing context in which this special attribute rule is applicable.
Common Use Cases and Queries
This table is typically referenced during the execution of HR transactions to determine if any involved attributes require non-standard processing. A common use case is within data copy or mass transaction programs, where the system must check if attributes being processed have special rules that prevent standard copying or require additional validation. For reporting and diagnostic purposes, administrators may run queries to audit all configured special attributes. A foundational SQL pattern to retrieve this mapping would be:
- SELECT psa.special_attribute_id, ptca.attribute_code, pcec.context_name
- FROM pqh_special_attributes psa,
- pqh_txn_category_attributes ptca,
- pqh_copy_entity_contexts pcec
- WHERE psa.txn_category_attribute_id = ptca.txn_category_attribute_id
- AND psa.context = pcec.copy_entity_context_id;
This query joins the key related tables to display the special attribute ID, the actual attribute code, and the context where the special rule applies.
Related Objects
The PQH_SPECIAL_ATTRIBUTES table exists within a defined relational schema, primarily interacting with two key tables via foreign key constraints:
- PQH_TXN_CATEGORY_ATTRIBUTES: This table is referenced via the TXN_CATEGORY_ATTRIBUTE_ID column. It defines the specific attributes available for different HR transaction categories. The relationship ensures a special attribute is always tied to a valid, pre-defined transactional attribute.
- PQH_COPY_ENTITY_CONTEXTS: This table is referenced via the CONTEXT column. It defines the various contexts or scenarios for data copying and entity management within the Public Sector HR module. The relationship specifies the exact operational context in which the special attribute rule is active.
These relationships are critical for maintaining data integrity and ensuring that special attribute configurations are meaningful and enforceable within the application's business logic.
-
Table: PQH_SPECIAL_ATTRIBUTES
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PQH.PQH_SPECIAL_ATTRIBUTES, object_name:PQH_SPECIAL_ATTRIBUTES, status:VALID, product: PQH - Public Sector HR , description: Identifies attributes with special functions , implementation_dba_data: HR.PQH_SPECIAL_ATTRIBUTES ,
-
Table: PQH_SPECIAL_ATTRIBUTES
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PQH.PQH_SPECIAL_ATTRIBUTES, object_name:PQH_SPECIAL_ATTRIBUTES, status:VALID, product: PQH - Public Sector HR , description: Identifies attributes with special functions , implementation_dba_data: HR.PQH_SPECIAL_ATTRIBUTES ,
-
View: PQH_SPECIAL_ATTRIBUTES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PQH.PQH_SPECIAL_ATTRIBUTES_V, object_name:PQH_SPECIAL_ATTRIBUTES_V, status:VALID, product: PQH - Public Sector HR , implementation_dba_data: APPS.PQH_SPECIAL_ATTRIBUTES_V ,
-
View: PQH_SPECIAL_ATTRIBUTES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PQH.PQH_SPECIAL_ATTRIBUTES_V, object_name:PQH_SPECIAL_ATTRIBUTES_V, status:VALID, product: PQH - Public Sector HR , implementation_dba_data: APPS.PQH_SPECIAL_ATTRIBUTES_V ,