Search Results document_status_dsp
Overview
ICX_PO_SUPPL_CAT_ITEMS_V is an APPS-owned view in Oracle E-Business Suite Release 12.1.1 and 12.2.2, catalogued under the ICX (Oracle iProcurement) product family. ETRM documentation classifies the object as Obsolete, and its status is VALID, meaning the definition persists in the database but Oracle no longer positions it as a supported or forward-development interface. Its purpose was to expose supplier catalog content sourced from Oracle Purchasing documents—quotations, blanket purchase agreements, and related sourcing records—so that iProcurement and dependent reporting layers could present purchasable catalog items alongside vendor, pricing, and agreement attributes in a single flattened row set. The view joins header-level Purchasing data (vendor, terms, currency, effective dates, authorization) with line-level item data (item, category, UOM, quantity, price, vendor product number) and resolves several descriptive values through lookups and HR name utilities.
Because the object is obsolete, it should be treated as a legacy read-only artifact. New development should reference the current iProcurement catalog and Purchasing sourcing views rather than this definition. The user search term "document_num" maps directly to the DOCUMENT_NUM column, which exposes the Purchasing document number (PO_HEADERS.SEGMENT1), the human-readable identifier for the underlying quotation or blanket agreement.
Underlying Base Objects
The documented base objects fall into several functional groups:
- Purchasing documents: PO_HEADERS, PO_LINES, PO_DOCUMENT_TYPES, PO_LINE_TYPES, PO_LOOKUP_CODES.
- Supplier master: PO_VENDORS, PO_VENDOR_SITES, PO_VENDOR_CONTACTS.
- Items and categories: MTL_SYSTEM_ITEMS_KFV, MTL_CATEGORIES_KFV.
- Financials and currency: AP_TERMS, GL_SETS_OF_BOOKS, GL_DAILY_CONVERSION_TYPES, FINANCIALS_SYSTEM_PARAMETERS.
- Security and naming utilities: FND_GLOBAL, HR_GENERAL, HR_PERSON_NAME, HR_SECURITY, PER_PEOPLE_F.
PO_HEADERS supplies the header key, vendor, document type, authorization status, terms, currency, and effective dates. PO_LINES supplies line number, item, category, description, UOM, quantity, unit price, and committed quantities. Vendor views resolve names, site codes, contacts, and parent/hold attributes. Key Flexfield views (MTL_SYSTEM_ITEMS_KFV, MTL_CATEGORIES_KFV) render concatenated item and category identifiers. HR packages constrain agent and contact names according to the caller's security profile.
Key Columns
PO_HEADER_ID,PO_LINE_ID– primary keys for header and line, cast to character.DOCUMENT_NUM– the Purchasing document number (PO_HEADERS.SEGMENT1).DOCUMENT_STATUS_CODE/DOCUMENT_STATUS_DSP– status resolved by document type; the displayed value comes from PO_LOOKUP_CODES.VENDOR_ID,VENDOR_NAME,VENDOR_SITE_ID,VENDOR_SITE_CODE,VENDOR_CONTACT_NAME– supplier identification.TYPE_LOOKUP_CODE,TYPE_NAME– document type classification (for example, QUOTATION or BLANKET).AGENT_ID,AGENT_NAME– buyer identity.CURRENCY_CODE,RATE,RATE_TYPE,RATE_DATE,FUNCTIONAL_CURRENCY– currency and conversion context.EFFECTIVE_FROM,EFFECTIVE_TO,AMOUNT_AGREED,AMOUNT_LIMIT,QUANTITY_AGREED– agreement validity and commitment values.ITEM_ID,ITEM_DESCRIPTION,CATEGORY_NAME,LINE_UOM,CURRENCY_LINE_PRICE,VENDOR_PRODUCT_NUM– catalog line detail.
Common Use Cases and Queries
Typical legacy usage centers on retrieving supplier catalog lines for a specific agreement or supplier, or listing all items tied to a blanket agreement identified by document number.
SELECT document_num, vendor_name, item_description,
currency_line_price, line_uom
FROM apps.icx_po_suppl_cat_items_v
WHERE document_num = :p_document_num;
SELECT document_num, type_name, vendor_name,
effective_from, effective_to, amount_agreed
FROM apps.icx_po_suppl_cat_items_v
WHERE vendor_id = :p_vendor_id
AND effective_to >= SYSDATE;
Additional scenarios include reconciling catalog line prices against PO_LINES, auditing which suppliers expose active blanket agreements, and extracting item/category combinations for downstream punchout or requisition enrichment. Because the view applies HR security and financial system parameters, query results vary with the runtime user context. Given its obsolete status, any implementation relying on this view should plan migration to supported iProcurement catalog interfaces.
-
View: ICX_PO_SUPPL_CAT_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PO_SUPPL_CAT_ITEMS_V, object_name:ICX_PO_SUPPL_CAT_ITEMS_V, status:VALID, product: ICX - Oracle iProcurement , description: Obsolete , implementation_dba_data: APPS.ICX_PO_SUPPL_CAT_ITEMS_V ,
-
View: ICX_PO_SUPPL_CAT_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PO_SUPPL_CAT_ITEMS_V, object_name:ICX_PO_SUPPL_CAT_ITEMS_V, status:VALID, product: ICX - Oracle iProcurement , description: Obsolete , implementation_dba_data: APPS.ICX_PO_SUPPL_CAT_ITEMS_V ,
-
View: ICX_PO_SUPPL_SEARCH_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PO_SUPPL_SEARCH_ITEMS_V, object_name:ICX_PO_SUPPL_SEARCH_ITEMS_V, status:VALID, product: ICX - Oracle iProcurement , description: Web Requisitions Context Search View , implementation_dba_data: APPS.ICX_PO_SUPPL_SEARCH_ITEMS_V ,
-
View: ICX_PO_SUPPL_CATALOG_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PO_SUPPL_CATALOG_ITEMS_V, object_name:ICX_PO_SUPPL_CATALOG_ITEMS_V, status:VALID, product: ICX - Oracle iProcurement , description: Supplier Catalog Items View , implementation_dba_data: APPS.ICX_PO_SUPPL_CATALOG_ITEMS_V ,
-
View: ICX_PO_SUPPL_CATALOG_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PO_SUPPL_CATALOG_ITEMS_V, object_name:ICX_PO_SUPPL_CATALOG_ITEMS_V, status:VALID, product: ICX - Oracle iProcurement , description: Supplier Catalog Items View , implementation_dba_data: APPS.ICX_PO_SUPPL_CATALOG_ITEMS_V ,
-
View: ICX_PO_SUPPL_SEARCH_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PO_SUPPL_SEARCH_ITEMS_V, object_name:ICX_PO_SUPPL_SEARCH_ITEMS_V, status:VALID, product: ICX - Oracle iProcurement , description: Web Requisitions Context Search View , implementation_dba_data: APPS.ICX_PO_SUPPL_SEARCH_ITEMS_V ,
-
View: ICX_PO_SUPPLIER_CATALOGS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PO_SUPPLIER_CATALOGS_V, object_name:ICX_PO_SUPPLIER_CATALOGS_V, status:VALID, product: ICX - Oracle iProcurement , description: Obsolete , implementation_dba_data: APPS.ICX_PO_SUPPLIER_CATALOGS_V ,
-
View: ICX_PO_SUPPLIER_CATALOGS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PO_SUPPLIER_CATALOGS_V, object_name:ICX_PO_SUPPLIER_CATALOGS_V, status:VALID, product: ICX - Oracle iProcurement , description: Obsolete , implementation_dba_data: APPS.ICX_PO_SUPPLIER_CATALOGS_V ,