Search Results por_header_v
Overview
POR_HEADER_V is a VALID database view owned by the APPS schema in Oracle E-Business Suite, defined against the Oracle iProcurement (ICX) product. It is documented in ETRM as the "Requisition Header View." The view presents a denormalized, presentation-ready projection of requisition header data drawn from the purchasing tables at the core of the iProcurement and Purchasing stack. Its purpose is to expose requisition header attributes already translated into their display values — authorization status, document state, cancellation, and requisition type are all resolved to their lookup meanings rather than stored codes — so that iProcurement pages, Oracle Workflow notification content, and custom reports can consume requisition headers without repeatedly joining the lookup tables themselves.
Because the view surfaces the WF_ITEM_TYPE and WF_ITEM_KEY columns from PO_REQUISITION_HEADERS, it is directly relevant to the search term "workflow_item_key." These columns hold the Oracle Workflow item type and item key associated with the requisition approval process, allowing callers to correlate a requisition header with its live workflow instance and to invoke Workflow APIs such as WF_ENGINE.Item_Key or construct notification lookups from within a query on this view.
Underlying Base Objects
The documented base objects for the view are: PO_REQUISITION_HEADERS (SYNONYM), PO_REQUISITION_LINES (SYNONYM), PO_LOOKUP_CODES (VIEW), HR_EMPLOYEES (VIEW), AP_CARDS (SYNONYM), and the FND_GLOBAL, FND_PROFILE, HR_GENERAL, HR_PERSON_NAME, and HR_SECURITY packages. Functionally, PO_REQUISITION_HEADERS is the driving table, aliased PRH. PO_LOOKUP_CODES is joined four times to decode AUTHORIZATION_STATUS, CLOSED_CODE, CANCEL_FLAG, and TYPE_LOOKUP_CODE. HR_EMPLOYEES is joined on PREPARER_ID = EMPLOYEE_ID to obtain the preparer's full name. AP_CARDS is an outer join on PCARD_ID for procurement card details. PO_REQUISITION_LINES is outer-joined on REQUISITION_HEADER_ID, which means header rows are retained even when no line rows exist.
Key Columns
- REQUISITION_HEADER_ID — primary key of the requisition header, used to join to lines, distributions, and workflow.
- SEGMENT1 — the user-visible requisition number.
- PREPARER_ID / FULL_NAME — the preparer's employee identifier and resolved name.
- AUTHORIZATION_STATUS, CANCEL_FLAG, CLOSED_CODE (via NVL to 'OPEN') — decoded status fields, each accompanied by a DISPLAYED_FIELD from PO_LOOKUP_CODES.
- WF_ITEM_TYPE, WF_ITEM_KEY — the Oracle Workflow item type and item key for the requisition approval workflow; WF_ITEM_KEY corresponds to the workflow_item_key used when querying workflow tables and calling Workflow APIs.
- ORG_ID — operating unit, enforcing multi-org security in queries.
- PCARD_ID, CARD_NUMBER, DESCRIPTION — procurement card association, populated through the outer join to AP_CARDS.
- LAST_UPDATE_DATE and CREATION_DATE — formatted with TO_CHAR, with the creation date mask driven by the ICX_DATE_FORMAT_MASK profile option.
Common Use Cases and Queries
Typical uses include iProcurement requisition search and detail pages, workflow notification bodies that must display requisition context, and custom extracts that report requisition status by operating unit. A common pattern is to locate the workflow instance for a requisition:
SELECT REQUISITION_HEADER_ID, SEGMENT1, WF_ITEM_TYPE, WF_ITEM_KEY, AUTHORIZATION_STATUS FROM APPS.POR_HEADER_V WHERE SEGMENT1 = :requisition_number;SELECT SEGMENT1, FULL_NAME, PLC_AUTH_DISPLAY FROM APPS.POR_HEADER_V WHERE ORG_ID = :org_id AND AUTHORIZATION_STATUS = 'APPROVED';
Because the date columns are already formatted in the view, applications reading POR_HEADER_V should not re-apply TO_CHAR masks. Queries should generally filter on ORG_ID to respect operating unit security, and joins against PO_REQUISITION_LINES should account for the outer join built into the view definition.
-
View: POR_HEADER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_HEADER_V, object_name:POR_HEADER_V, status:VALID, product: ICX - Oracle iProcurement , description: Requisition Header View , implementation_dba_data: APPS.POR_HEADER_V ,
-
View: POR_HEADER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_HEADER_V, object_name:POR_HEADER_V, status:VALID, product: ICX - Oracle iProcurement , description: Requisition Header View , implementation_dba_data: APPS.POR_HEADER_V ,
-
SYNONYM: APPS.AP_CARDS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AP_CARDS, status:VALID,
-
SYNONYM: APPS.AP_CARDS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AP_CARDS, status:VALID,
-
VIEW: APPS.POR_HEADER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_HEADER_V, object_name:POR_HEADER_V, status:VALID,
-
VIEW: APPS.POR_HEADER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_HEADER_V, object_name:POR_HEADER_V, status:VALID,
-
SYNONYM: APPS.PO_REQUISITION_HEADERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PO_REQUISITION_HEADERS, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
VIEW: APPS.HR_EMPLOYEES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.HR_EMPLOYEES, object_name:HR_EMPLOYEES, status:VALID,
-
SYNONYM: APPS.PO_REQUISITION_HEADERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PO_REQUISITION_HEADERS, status:VALID,
-
VIEW: APPS.HR_EMPLOYEES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.HR_EMPLOYEES, object_name:HR_EMPLOYEES, status:VALID,
-
SYNONYM: APPS.PO_REQUISITION_LINES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PO_REQUISITION_LINES, status:VALID,
-
SYNONYM: APPS.PO_REQUISITION_LINES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PO_REQUISITION_LINES, status:VALID,
-
PACKAGE: APPS.HR_PERSON_NAME
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_PERSON_NAME, status:VALID,
-
PACKAGE: APPS.HR_PERSON_NAME
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_PERSON_NAME, status:VALID,
-
VIEW: APPS.PO_LOOKUP_CODES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_LOOKUP_CODES, object_name:PO_LOOKUP_CODES, status:VALID,
-
VIEW: APPS.PO_LOOKUP_CODES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_LOOKUP_CODES, object_name:PO_LOOKUP_CODES, status:VALID,
-
PACKAGE: APPS.HR_SECURITY
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_SECURITY, status:VALID,
-
PACKAGE: APPS.HR_SECURITY
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_SECURITY, status:VALID,
-
PACKAGE: APPS.HR_GENERAL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_GENERAL, status:VALID,
-
PACKAGE: APPS.HR_GENERAL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_GENERAL, status:VALID,
-
eTRM - PO Tables and Views
12.1.1
description: Temporary table for tracking a receiving upgrade from Release 9 to Release 10 ,
-
eTRM - ICX Tables and Views
12.1.1
-
eTRM - ICX Tables and Views
12.2.2
-
12.2.2 DBA Data
12.2.2
-
PACKAGE: APPS.FND_PROFILE
12.2.2
owner:APPS, object_type:PACKAGE, object_name:FND_PROFILE, status:VALID,
-
PACKAGE: APPS.FND_PROFILE
12.1.1
owner:APPS, object_type:PACKAGE, object_name:FND_PROFILE, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
PACKAGE: APPS.FND_GLOBAL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:FND_GLOBAL, status:VALID,
-
PACKAGE: APPS.FND_GLOBAL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:FND_GLOBAL, status:VALID,
-
eTRM - ICX Tables and Views
12.2.2
-
eTRM - ICX Tables and Views
12.1.1
-
eTRM - PO Tables and Views
12.1.1
description: Temporary table for tracking a receiving upgrade from Release 9 to Release 10 ,