Search Results pqh_de_operations
Overview
The PQH_DE_OPERATIONS table is a transaction and configuration data object owned by the HR schema within the Oracle E-Business Suite, and it belongs to the PQH — Public Sector HR product family. In the ETRM 12.2.2 physical schema the table is documented as DE - Operations, where "DE" refers to the Public Sector Human Resources process known as Document Employment or, in certain deployments, Data Element processing. The table serves as a reference repository of discrete operations that the Public Sector HR subsystem records and executes against employee assignment, position, and budget data.
The object is documented with a heuristic Data Vault classification of standalone. This suggests that, from a modeling perspective, PQH_DE_OPERATIONS behaves as a self-contained reference entity rather than as a hub, link, or satellite connected to a broader integration fabric. The absence of mined foreign-key relationships reinforces that classification: the table does not participate in declared parent-child joins within the ETRM relational graph, and it is typically consumed as a lookup or staging source by concurrent programs and forms rather than as a detail table within a normalized entity hierarchy.
Key Information Stored
The table's documented physical structure contains nine columns. The most significant are summarized below.
- OPERATION_ID — The surrogate primary key, enforced by the
PQH_DE_OPERATIONS_PKconstraint and backed by the unique indexPQH_DE_OPERATIONS. This column is the canonical identifier used by every consumer of the table. - OPERATION_NUMBER — A human-readable business-key candidate. The unique index on
OPERATION_IDis the only documented unique index, butOPERATION_NUMBERfunctions as the natural key by which users and programs typically reference an operation. - DESCRIPTION — The free-text label describing the operation, used in list-of-values prompts, reports, and audit output.
- OBJECT_VERSION_NUMBER — The standard EBS optimistic-locking column, incremented on every update to detect concurrent modification.
- CREATED_BY, CREATION_DATE — The standard WHO audit columns recording the creating user and timestamp.
- LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — The standard WHO audit columns recording the last modifying user, timestamp, and login session.
The surrogate key OPERATION_ID should be treated as the join and reference column throughout; the business-key candidate OPERATION_NUMBER is the appropriate column for user-facing lookups and cross-system mapping.
Common Use Cases and Queries
Typical consumers of PQH_DE_OPERATIONS include Public Sector HR concurrent programs, Oracle Forms-based maintenance screens, and reporting queries that resolve an operation identifier to a readable description.
A standard resolution query joining the operation to its audit context:
SELECT operation_id,
operation_number,
description,
last_updated_by,
last_update_date
FROM hr.pqh_de_operations
WHERE operation_number = :p_number;
A driver query used when feeding a downstream validation routine or a staging extract:
SELECT o.operation_id,
o.operation_number,
o.description
FROM hr.pqh_de_operations o
WHERE o.last_update_date >= :p_last_run
ORDER BY o.operation_number;
Because the table is classified as standalone, reporting models should treat it as a dimension or code-lookup source rather than as a fact table. Extract, transform, and load routines populating a data warehouse typically promote OPERATION_ID to the dimension surrogate key and OPERATION_NUMBER to the natural business key.
Related Objects
The ETRM relationship data documents no foreign keys from PQH_DE_OPERATIONS, consistent with its standalone classification. The following objects are the most significant consumers or logical associates in the Public Sector HR arena, joined on OPERATION_ID or OPERATION_NUMBER where the surrounding PQH model permits.
- PQH_DE_OPERATIONS_PK — The primary key constraint on
OPERATION_ID; the authoritative uniqueness guarantee. - PQH_DE_OPERATIONS (unique index) — The unique index on
OPERATION_IDused for index-based access paths. - HR.PER_ALL_PEOPLE_F — The person/assignment master most commonly referenced when operation records are attached to an employee in Public Sector HR flows.
- HR.PER_ALL_ASSIGNMENTS_F — The assignment table against which operational actions are frequently validated.
- PQH_DE_OPERATION_UNITS — A logical companion table where per-unit operation attributes are held; joined on
OPERATION_IDat the application layer. - FND_LOOKUP_VALUES — Provides the standard EBS lookup mechanism when operation types or statuses are configured outside the
DESCRIPTIONcolumn. - FND_CONCURRENT_REQUESTS — The driver of any batch process that consumes or maintains operation records.
Consultants maintaining this table should preserve the WHO audit columns and the OBJECT_VERSION_NUMBER value on every update, as EBS forms rely on them for concurrency control.
-
Table: PQH_DE_OPERATIONS
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PQH.PQH_DE_OPERATIONS, object_name:PQH_DE_OPERATIONS, status:VALID, product: PQH - Public Sector HR , description: DE - Operations , implementation_dba_data: HR.PQH_DE_OPERATIONS ,
-
Table: PQH_DE_OPERATIONS
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PQH.PQH_DE_OPERATIONS, object_name:PQH_DE_OPERATIONS, status:VALID, product: PQH - Public Sector HR , description: DE - Operations , implementation_dba_data: HR.PQH_DE_OPERATIONS ,
-
APPS.PQH_OPL_BUS SQL Statements
12.2.2
-
APPS.PQH_OPL_BUS SQL Statements
12.1.1
-
TABLE: HR.PQH_DE_OPERATIONS
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PQH.PQH_DE_OPERATIONS, object_name:PQH_DE_OPERATIONS, status:VALID,
-
VIEW: HR.PQH_DE_OPERATIONS#
12.2.2
owner:HR, object_type:VIEW, object_name:PQH_DE_OPERATIONS#, status:VALID,
-
APPS.PQH_OPL_SHD SQL Statements
12.1.1
-
APPS.PQH_OPL_SHD SQL Statements
12.2.2
-
TABLE: HR.PQH_DE_OPERATIONS
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PQH.PQH_DE_OPERATIONS, object_name:PQH_DE_OPERATIONS, status:VALID,
-
SYNONYM: PUBLIC.PQH_DE_OPERATIONS
12.1.1
owner:PUBLIC, object_type:SYNONYM, object_name:PQH_DE_OPERATIONS, status:VALID,
-
VIEW: HR.PQH_DE_OPERATIONS#
12.2.2
-
SYNONYM: APPS.PQH_DE_OPERATIONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PQH_DE_OPERATIONS, status:VALID,
-
SYNONYM: APPS.PQH_DE_OPERATIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PQH_DE_OPERATIONS, status:VALID,
-
APPS.PQH_OPL_INS SQL Statements
12.1.1
-
APPS.PQH_OPL_INS SQL Statements
12.2.2
-
INDEX: HR.PQH_DE_OPERATIONS
12.2.2
owner:HR, object_type:INDEX, object_name:PQH_DE_OPERATIONS, status:VALID,
-
INDEX: HR.PQH_DE_OPERATIONS
12.1.1
owner:HR, object_type:INDEX, object_name:PQH_DE_OPERATIONS, status:VALID,
-
APPS.PQH_DE_OPERATION SQL Statements
12.2.2
-
PACKAGE BODY: APPS.PQH_OPL_SHD
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PQH_OPL_SHD, status:VALID,
-
TRIGGER: APPS.PQH_DE_OPERATIONS_WHO
12.1.1
owner:APPS, object_type:TRIGGER, object_name:PQH_DE_OPERATIONS_WHO, status:VALID,
-
PACKAGE BODY: APPS.PQH_OPL_SHD
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PQH_OPL_SHD, status:VALID,
-
PACKAGE BODY: APPS.PQH_OPL_DEL
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PQH_OPL_DEL, status:VALID,
-
APPS.PQH_DE_OPERATION SQL Statements
12.1.1
-
PACKAGE BODY: APPS.PQH_OPL_BUS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PQH_OPL_BUS, status:VALID,
-
TRIGGER: APPS.PQH_DE_OPERATIONS_WHO
12.2.2
owner:APPS, object_type:TRIGGER, object_name:PQH_DE_OPERATIONS_WHO, status:VALID,
-
PACKAGE BODY: APPS.PQH_DE_OPERATIONS_API
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PQH_DE_OPERATIONS_API, status:VALID,
-
PACKAGE BODY: APPS.PQH_DE_OPERATION
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PQH_DE_OPERATION, status:VALID,
-
PACKAGE BODY: APPS.PQH_OPL_UPD
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PQH_OPL_UPD, status:VALID,
-
PACKAGE BODY: APPS.PQH_OPL_BUS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PQH_OPL_BUS, status:VALID,
-
PACKAGE BODY: APPS.PQH_DE_OPERATIONS_API
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PQH_DE_OPERATIONS_API, status:VALID,
-
PACKAGE BODY: APPS.PQH_DE_OPERATION
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PQH_DE_OPERATION, status:VALID,
-
APPS.PQH_OPL_DEL SQL Statements
12.1.1
-
APPS.PQH_OPL_DEL SQL Statements
12.2.2
-
PACKAGE BODY: APPS.PQH_OPL_INS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PQH_OPL_INS, status:VALID,
-
PACKAGE BODY: APPS.PQH_OPL_UPD
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PQH_OPL_UPD, status:VALID,
-
PACKAGE BODY: APPS.PQH_OPL_DEL
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PQH_OPL_DEL, status:VALID,
-
TRIGGER: APPS.PQH_DE_OPERATIONS_WHO
12.1.1
-
PACKAGE BODY: APPS.PQH_OPL_INS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PQH_OPL_INS, status:VALID,
-
TRIGGER: APPS.PQH_DE_OPERATIONS_WHO
12.2.2
-
PACKAGE BODY: APPS.PQH_OPL_SHD
12.2.2
-
PACKAGE BODY: APPS.PQH_OPL_SHD
12.1.1
-
PACKAGE BODY: APPS.PQH_OPL_BUS
12.2.2
-
PACKAGE BODY: APPS.PQH_OPL_BUS
12.1.1
-
APPS.PQH_OPL_UPD SQL Statements
12.1.1
-
APPS.PQH_OPL_UPD SQL Statements
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
PACKAGE BODY: APPS.PQH_OPL_INS
12.1.1
-
PACKAGE BODY: APPS.PQH_OPL_INS
12.2.2