Search Results pqh_transaction_status
Overview
APPS.PQH_TRANSACTIONS_V is a reporting and integration view in Oracle E-Business Suite Advanced Benefits and Enterprise Talent Management (ETRM), available in releases 12.1.1 and 12.2.2. It presents a consolidated, flattened list of transactions flowing through the Position Management and Workforce Compensation (Worksheets) transaction frameworks, resolved across both the position transaction and worksheet detail data models.
The view is particularly significant because it is the canonical source for the PQH_TRANSACTION_STATUS lookup. Each row exposes the raw status code and its decoded meaning via HR_GENERAL.DECODE_LOOKUP, and reports the workflow's current owner via PQH_WF.GET_CURRENT_OWNER. This makes it the primary object for reporting on transaction state, approval routing, and pending versus completed activity across both frameworks. It is commonly used for status dashboards, workflow queue analysis, and integrations that need to poll for transaction completion.
Underlying Base Objects
Per the ETRM 12.2.2 metadata, the view is defined over the following objects:
- PQH_POSITION_TRANSACTIONS (synonym) — source of position transaction rows, supplying
position_transaction_id,name,transaction_status, andwf_transaction_category_id. - PQH_TRANSACTION_CATEGORIES (synonym) — joined on
wf_transaction_category_id = transaction_category_idto categorize each transaction. - PQH_WORKSHEETS (synonym) and PQH_WORKSHEET_DETAILS (synonym) — source of worksheet detail rows, joined on
worksheet_idand filtered to statuses in ('APPROVED','DELEGATED','TERMINATE','SUBMITTED','REJECT','APPLIED','PENDING') andNVL(action_cd,'D')='D'. - HR_GENERAL (package) — provides
DECODE_LOOKUPto resolve lookup meanings. - PQH_WF (package) — provides
GET_CURRENT_OWNERto identify the current approver/owner. - PQH_WKS_BUDGET (package) — supplies
get_transaction_namefor worksheet-derived rows.
The view is a UNION ALL of two branches: one for position transactions and one for worksheet details, unified into a common column list so that both transaction streams can be queried identically.
Key Columns
TRANSACTION_CATEGORY_ID— category identifier from PQH_TRANSACTION_CATEGORIES.PARENT_TRANSACTION_ID— for position transactions, equals the transaction id; for worksheet rows, derives fromparent_worksheet_detail_idor the detail id.TRANSACTION_ID— the position transaction id or worksheet detail id.TRANSACTION_NAME— the position transaction name or the worksheet transaction name.TRANSACTION_STATUS— raw status code; worksheet rows default to 'PENDING' when null.TRANSACTION_STATUS_MEANING— decoded meaning from the PQH_TRANSACTION_STATUS lookup.CURRENT_OWNER— the current workflow owner/approver derived by PQH_WF.GET_CURRENT_OWNER.
Common Use Cases and Queries
Typical uses include transaction status dashboards and pending-work queries.
- Status summary by category and decoded meaning.
- Filtering for currently pending items awaiting approval.
- Identifying the current owner for workflow follow-up.
- Integration polling to detect transactions in APPLIED or APPROVED states.
Sample SQL:
SELECT transaction_id, transaction_name,
transaction_status, transaction_status_meaning, current_owner
FROM apps.pqh_transactions_v
WHERE transaction_status = 'PENDING';
Because the view invokes package functions per row, queries should be filtered and tuned, as CURRENT_OWNER and name resolution may impose performance overhead on large result sets.
-
Lookup Type: PQH_TRANSACTION_STATUS
12.1.1
product: PQH - Public Sector HR , meaning: PQH_TRANSACTION_STATUS , description: Transaction Status ,
-
Lookup Type: PQH_TRANSACTION_STATUS
12.2.2
product: PQH - Public Sector HR , meaning: PQH_TRANSACTION_STATUS , description: Transaction Status ,
-
VIEW: APPS.PQH_TRANSACTIONS_V
12.1.1
-
VIEW: APPS.PQH_TRANSACTIONS_V
12.2.2
-
View: PQH_TRANSACTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PQH.PQH_TRANSACTIONS_V, object_name:PQH_TRANSACTIONS_V, status:VALID, product: PQH - Public Sector HR , implementation_dba_data: APPS.PQH_TRANSACTIONS_V ,
-
View: PQH_TRANSACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PQH.PQH_TRANSACTIONS_V, object_name:PQH_TRANSACTIONS_V, status:VALID, product: PQH - Public Sector HR , implementation_dba_data: APPS.PQH_TRANSACTIONS_V ,
-
VIEW: APPS.PQH_PTX_HISTORY_V
12.2.2
-
VIEW: APPS.PQH_PTX_HISTORY_V
12.1.1
-
View: PQH_PTX_HISTORY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PQH.PQH_PTX_HISTORY_V, object_name:PQH_PTX_HISTORY_V, status:VALID, product: PQH - Public Sector HR , implementation_dba_data: APPS.PQH_PTX_HISTORY_V ,
-
View: PQH_PTX_HISTORY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PQH.PQH_PTX_HISTORY_V, object_name:PQH_PTX_HISTORY_V, status:VALID, product: PQH - Public Sector HR , implementation_dba_data: APPS.PQH_PTX_HISTORY_V ,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
APPS.PQH_PTX_UTL SQL Statements
12.2.2
-
APPS.PQH_PTX_UTL SQL Statements
12.1.1
-
PACKAGE BODY: APPS.PQH_PTX_UTL
12.2.2
-
PACKAGE BODY: APPS.PQH_PTX_UTL
12.1.1
-
APPS.PQH_PTX_UTL dependencies on HR_GENERAL
12.1.1
-
APPS.PQH_PTX_UTL dependencies on HR_GENERAL
12.2.2
-
PACKAGE BODY: APPS.PQH_WKS_BUS
12.1.1
-
PACKAGE BODY: APPS.PQH_WKS_BUS
12.2.2
-
APPS.PQH_PTX_UTL dependencies on PQH_POSITION_TRANSACTIONS
12.1.1
-
APPS.PQH_PTX_UTL dependencies on PQH_POSITION_TRANSACTIONS
12.2.2
-
APPS.PQH_WKS_BUS dependencies on HR_API
12.1.1
-
APPS.PQH_WKS_BUS dependencies on HR_API
12.2.2
-
PACKAGE BODY: APPS.PQH_WDT_BUS
12.2.2
-
PACKAGE BODY: APPS.PQH_WDT_BUS
12.1.1
-
APPS.PQH_PTX_UTL dependencies on HR_UTILITY
12.2.2
-
APPS.PQH_PTX_UTL dependencies on HR_UTILITY
12.1.1
-
APPS.PQH_WDT_BUS dependencies on HR_API
12.1.1
-
APPS.PQH_WDT_BUS dependencies on HR_API
12.2.2