Search Results closed_code_dsp
Overview
APPS.ICX_PO_REQ_HEADERS_V is a reporting and inquiry view over Oracle Purchasing requisition header data, exposed in the Internet Computing Architecture (ICX) schema used by Oracle iProcurement and related self-service applications. In Oracle EBS 12.1.1 and 12.2.2 it provides a denormalized, display-ready projection of purchase requisition headers, joining the base requisition table to lookups, document type definitions, employee name resolution, set of books currency information, and several PL/SQL server-side functions that compute derived values at query time. The view is not a stored table; every column is resolved when the query executes, which means its cost is dominated by the packaged function calls embedded in the SELECT list.
Its principal role is to support requisition search, summary, and status displays without requiring callers to replicate the join and decoding logic used by the purchasing forms. The column list deliberately mixes raw identifiers (REQUISITION_HEADER_ID, PREPARER_ID, SEGMENT1 through SEGMENT5) with presentation columns (PREPARER_NAME, AUTHORIZATION_STATUS_DSP, DOCUMENT_TYPE_DSP, CLOSED_CODE_DSP, CANCEL_DSP) so that a single query can drive both a result table and its drill-down.
Underlying Base Objects
The view is defined over PO_REQUISITION_HEADERS (referenced through a synonym) as its driving table, aliased PRH in the view text. It joins GL_SETS_OF_BOOKS to obtain the functional currency code used for amount formatting, FND_LOOKUPS for lookup meanings, PO_DOCUMENT_TYPES for the document type display name, and HR_EMPLOYEES for the preparer's full name, with HR_GENERAL, HR_PERSON_NAME, and HR_SECURITY packages applied for name formatting and security. Additional supporting objects include FINANCIALS_SYSTEM_PARAMETERS, PO_LOOKUP_CODES, HR_EMPLOYEES, and the FND_GLOBAL, FND_CURRENCY, FND_PROFILE, and PO_REQUISITION_HEADERS_PKG packages. Derived values come from PO_REQS_INQ_SV and PO_REQUISITION_HEADERS_PKG.
Key Columns
- RESERVED_FLAG — computed by PO_REQS_INQ_SV.GET_RESERVED_FLAG(REQUISITION_HEADER_ID); indicates whether funds are reserved against the requisition. This is the column most often searched for by name.
- REQUISITION_HEADER_ID / REQUISITION_NUM — the primary key and the SEGMENT1 user-visible requisition number.
- AUTHORIZATION_STATUS / AUTHORIZATION_STATUS_DSP — the raw approval status code and its displayed-field equivalent.
- CANCEL_FLAG, CANCEL_DSP, CLOSED_CODE_DSP — DECODE-derived indicators showing whether the header is cancelled or closed.
- PREPARER_ID / PREPARER_NAME — the preparer's employee identifier and resolved full name.
- REQ_HEADER_AMOUNT / CURRENCY_CODE — the header total formatted via FND_CURRENCY.GET_FORMAT_MASK against the set-of-books currency.
- DOCUMENT_TYPE_DSP — document type name from PO_DOCUMENT_TYPES.
- Descriptive and audit columns: DESCRIPTION, NOTE_TO_AUTHORIZER, AGENT_RETURN_NOTE, START_DATE_ACTIVE, END_DATE_ACTIVE, ENABLED_FLAG, ON_LINE_FLAG, and the standard WHO columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE).
- ATTRIBUTE_CATEGORY and ATTRIBUTE1 through ATTRIBUTE15 for descriptive flexfield data.
Common Use Cases and Queries
Typical usages include iProcurement requisition summary pages, approval and funds-check reporting, and custom operational reports that must reconcile requisitions against reservations. Because several columns invoke PL/SQL, filtering on RESERVED_FLAG in the WHERE clause forces the function to execute for each candidate row; restricting by REQUISITION_HEADER_ID or a date range first materially improves performance. It is also advisable to select only the columns required, since REQ_HEADER_AMOUNT and RESERVED_FLAG are the costliest.
SELECT requisition_num,
description,
preparer_name,
authorization_status_dsp,
reserved_flag,
req_header_amount,
currency_code
FROM apps.icx_po_req_headers_v
WHERE requisition_header_id = :req_header_id;
SELECT requisition_num,
preparer_name,
req_header_amount
FROM apps.icx_po_req_headers_v
WHERE start_date_active >= :from_date
AND reserved_flag = 'Y';
In 12.1.1 and 12.2.2 the definition is materially identical; differences observed between environments generally reflect patch level rather than release, so any query built against this view should be validated against the target instance's compiled view text.
-
VIEW: APPS.ICX_PO_REQ_HEADERS_V
12.1.1
-
VIEW: APPS.ICX_PO_REQ_HEADERS_V
12.2.2
-
View: ICX_PO_REQ_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PO_REQ_HEADERS_V, object_name:ICX_PO_REQ_HEADERS_V, status:VALID, product: ICX - Oracle iProcurement , description: Requistion Headers View , implementation_dba_data: APPS.ICX_PO_REQ_HEADERS_V ,
-
View: ICX_PO_REQ_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PO_REQ_HEADERS_V, object_name:ICX_PO_REQ_HEADERS_V, status:VALID, product: ICX - Oracle iProcurement , description: Requistion Headers View , implementation_dba_data: APPS.ICX_PO_REQ_HEADERS_V ,
-
View: ICX_PO_REQUISITION_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PO_REQUISITION_HEADERS_V, object_name:ICX_PO_REQUISITION_HEADERS_V, status:VALID, product: ICX - Oracle iProcurement , description: Requisition Headers View , implementation_dba_data: APPS.ICX_PO_REQUISITION_HEADERS_V ,
-
View: ICX_PO_REQUISITION_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PO_REQUISITION_HEADERS_V, object_name:ICX_PO_REQUISITION_HEADERS_V, status:VALID, product: ICX - Oracle iProcurement , description: Requisition Headers View , implementation_dba_data: APPS.ICX_PO_REQUISITION_HEADERS_V ,
-
VIEW: APPS.ICX_PO_REQ_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PO_REQ_HEADERS_V, object_name:ICX_PO_REQ_HEADERS_V, status:VALID,
-
VIEW: APPS.ICX_PO_REQ_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PO_REQ_HEADERS_V, object_name:ICX_PO_REQ_HEADERS_V, status:VALID,
-
VIEW: APPS.ICX_PO_HDR_ARCHIVE_OPEN_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PO_HDR_ARCHIVE_OPEN_V, object_name:ICX_PO_HDR_ARCHIVE_OPEN_V, status:VALID,
-
VIEW: APPS.ICX_PO_REQUISITION_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PO_REQUISITION_HEADERS_V, object_name:ICX_PO_REQUISITION_HEADERS_V, status:VALID,
-
VIEW: APPS.ICX_PO_REQUISITION_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PO_REQUISITION_HEADERS_V, object_name:ICX_PO_REQUISITION_HEADERS_V, status:VALID,
-
VIEW: APPS.ICX_PO_HEADERS_ARCHIVE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PO_HEADERS_ARCHIVE_V, object_name:ICX_PO_HEADERS_ARCHIVE_V, status:VALID,
-
VIEW: APPS.ICX_PO_SUPPLIER_AGREEMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PO_SUPPLIER_AGREEMENTS_V, object_name:ICX_PO_SUPPLIER_AGREEMENTS_V, status:VALID,
-
VIEW: APPS.ICX_PO_REQUISITION_HEADERS_V
12.1.1
-
VIEW: APPS.ICX_PO_HDR_ARCHIVE_OPEN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PO_HDR_ARCHIVE_OPEN_V, object_name:ICX_PO_HDR_ARCHIVE_OPEN_V, status:VALID,
-
VIEW: APPS.ICX_PO_REQUISITION_HEADERS_V
12.2.2
-
VIEW: APPS.ICX_PO_SUPPLIER_AGREEMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PO_SUPPLIER_AGREEMENTS_V, object_name:ICX_PO_SUPPLIER_AGREEMENTS_V, status:VALID,
-
VIEW: APPS.ICX_EDM_PURCHASE_REQ_V
12.1.1
-
VIEW: APPS.ICX_EDM_PURCHASE_REQ_V
12.2.2
-
VIEW: APPS.ICX_PO_HEADERS_ARCHIVE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PO_HEADERS_ARCHIVE_V, object_name:ICX_PO_HEADERS_ARCHIVE_V, status:VALID,
-
VIEW: APPS.ICX_PO_SUPPLIER_ORDERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PO_SUPPLIER_ORDERS_V, object_name:ICX_PO_SUPPLIER_ORDERS_V, status:VALID,
-
VIEW: APPS.ICX_PO_SUPPLIER_ORDERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PO_SUPPLIER_ORDERS_V, object_name:ICX_PO_SUPPLIER_ORDERS_V, status:VALID,
-
VIEW: APPS.POS_PO_SUPPLIER_ORDERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POS_PO_SUPPLIER_ORDERS_V POS.POS_PO_SUPPLIER_ORDERS_V, object_name:POS_PO_SUPPLIER_ORDERS_V, status:VALID,
-
VIEW: APPS.POS_PO_SUPPLIER_ORDERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POS_PO_SUPPLIER_ORDERS_V, object_name:POS_PO_SUPPLIER_ORDERS_V, status:VALID,
-
View: ICX_EDM_PURCHASE_REQ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_EDM_PURCHASE_REQ_V, object_name:ICX_EDM_PURCHASE_REQ_V, status:VALID, product: ICX - Oracle iProcurement , description: Project Related Purchase Requisitions View , implementation_dba_data: APPS.ICX_EDM_PURCHASE_REQ_V ,
-
View: ICX_EDM_PURCHASE_REQ_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_EDM_PURCHASE_REQ_V, object_name:ICX_EDM_PURCHASE_REQ_V, status:VALID, product: ICX - Oracle iProcurement , description: Project Related Purchase Requisitions View , implementation_dba_data: APPS.ICX_EDM_PURCHASE_REQ_V ,
-
VIEW: APPS.POS_PO_LINES_ARCHIVE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POS_PO_LINES_ARCHIVE_V, object_name:POS_PO_LINES_ARCHIVE_V, status:VALID,
-
VIEW: APPS.POS_PO_HEADERS_ARCHIVE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POS_PO_HEADERS_ARCHIVE_V, object_name:POS_PO_HEADERS_ARCHIVE_V, status:VALID,
-
View: PO_HEADERS_INQ_REL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_HEADERS_INQ_REL_V, object_name:PO_HEADERS_INQ_REL_V, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.PO_HEADERS_INQ_REL_V ,
-
View: PO_HEADERS_INQ_REL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_HEADERS_INQ_REL_V, object_name:PO_HEADERS_INQ_REL_V, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.PO_HEADERS_INQ_REL_V ,
-
View: ICX_PO_SUPPLIER_AGREEMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PO_SUPPLIER_AGREEMENTS_V, object_name:ICX_PO_SUPPLIER_AGREEMENTS_V, status:VALID, product: ICX - Oracle iProcurement , description: Supplier Agreements View , implementation_dba_data: APPS.ICX_PO_SUPPLIER_AGREEMENTS_V ,
-
View: ICX_PO_SUPPLIER_AGREEMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PO_SUPPLIER_AGREEMENTS_V, object_name:ICX_PO_SUPPLIER_AGREEMENTS_V, status:VALID, product: ICX - Oracle iProcurement , description: Supplier Agreements View , implementation_dba_data: APPS.ICX_PO_SUPPLIER_AGREEMENTS_V ,
-
VIEW: APPS.POS_PO_HEADERS_ARCHIVE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POS_PO_HEADERS_ARCHIVE_V POS.POS_PO_HEADERS_ARCHIVE_V, object_name:POS_PO_HEADERS_ARCHIVE_V, status:VALID,
-
VIEW: APPS.POS_PO_SUPPLIER_AGREEMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POS_PO_SUPPLIER_AGREEMENTS_V POS.POS_PO_SUPPLIER_AGREEMENTS_V, object_name:POS_PO_SUPPLIER_AGREEMENTS_V, status:VALID,
-
VIEW: APPS.PO_DISTRIBUTIONS_INQ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_DISTRIBUTIONS_INQ_V, object_name:PO_DISTRIBUTIONS_INQ_V, status:VALID,
-
VIEW: APPS.POS_PO_SUPPLIER_AGREEMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POS_PO_SUPPLIER_AGREEMENTS_V, object_name:POS_PO_SUPPLIER_AGREEMENTS_V, status:VALID,
-
View: POS_PO_SUPPLIER_AGREEMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POS_PO_SUPPLIER_AGREEMENTS_V, object_name:POS_PO_SUPPLIER_AGREEMENTS_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.POS_PO_SUPPLIER_AGREEMENTS_V ,
-
View: POS_PO_SUPPLIER_AGREEMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POS_PO_SUPPLIER_AGREEMENTS_V POS.POS_PO_SUPPLIER_AGREEMENTS_V, object_name:POS_PO_SUPPLIER_AGREEMENTS_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.POS_PO_SUPPLIER_AGREEMENTS_V ,
-
View: POS_PO_SUPPLIER_AGREEMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POS_PO_SUPPLIER_AGREEMENTS_V POS.POS_PO_SUPPLIER_AGREEMENTS_V, object_name:POS_PO_SUPPLIER_AGREEMENTS_V, status:VALID, product: POS - iSupplier Portal , description: Displays Blankets , implementation_dba_data: APPS.POS_PO_SUPPLIER_AGREEMENTS_V ,
-
VIEW: APPS.POS_PO_LINES_ARCHIVE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POS_PO_LINES_ARCHIVE_V POS.POS_PO_LINES_ARCHIVE_V, object_name:POS_PO_LINES_ARCHIVE_V, status:VALID,
-
VIEW: APPS.PO_DISTRIBUTIONS_INQ_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_DISTRIBUTIONS_INQ_V, object_name:PO_DISTRIBUTIONS_INQ_V, status:VALID,
-
VIEW: APPS.PO_HEADERS_INQ_PO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_HEADERS_INQ_PO_V, object_name:PO_HEADERS_INQ_PO_V, status:VALID,
-
VIEW: APPS.PO_HEADERS_INQ_PO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_HEADERS_INQ_PO_V, object_name:PO_HEADERS_INQ_PO_V, status:VALID,
-
VIEW: APPS.PO_HEADERS_INQ_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_HEADERS_INQ_V, object_name:PO_HEADERS_INQ_V, status:VALID,
-
View: PO_HEADERS_INQ_PO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_HEADERS_INQ_PO_V, object_name:PO_HEADERS_INQ_PO_V, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.PO_HEADERS_INQ_PO_V ,
-
VIEW: APPS.PO_HEADERS_INQ_REL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_HEADERS_INQ_REL_V, object_name:PO_HEADERS_INQ_REL_V, status:VALID,
-
VIEW: APPS.POS_PO_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POS_PO_LINES_V, object_name:POS_PO_LINES_V, status:VALID,
-
VIEW: APPS.PO_HEADERS_INQ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_HEADERS_INQ_V, object_name:PO_HEADERS_INQ_V, status:VALID,
-
VIEW: APPS.PO_HEADERS_INQ_REL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_HEADERS_INQ_REL_V, object_name:PO_HEADERS_INQ_REL_V, status:VALID,
-
VIEW: APPS.POS_PO_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POS_PO_LINES_V POS.POS_PO_LINES_V, object_name:POS_PO_LINES_V, status:VALID,