Search Results icx_chv_schedule_items_v
Overview
ICX_CHV_SCHEDULE_ITEMS_V is an Oracle E-Business Suite XL transaction view owned by the APPS schema and validated under the ICX (Oracle iProcurement) product family. It is documented as the Schedule Lines View and exposes supplier scheduling line detail together with the item, planning, purchasing document, receipt, and authorization context required to render that detail in the iProcurement and supplier scheduling user interfaces. The view is a read-only query structure: it does not store data of its own, but flattens the relationship between schedule headers, schedule items, approved supplier list attributes, master item definitions, purchase order documents, and receipt history into a single denormalized row per scheduling line. Because the object is a view rather than a table, it functions primarily as a reporting and integration surface — it supports ad hoc SQL, custom concurrent programs, and downstream interface extracts that need schedule line visibility without navigating the individual CHV and PO base objects directly. In 12.1.1 and 12.2.2 the object remains a standard APPS-owned view; the 12.2.2 ETRM metadata lists it as VALID with the same column set and join structure, so custom code written against the 12.1.1 definition continues to resolve in an upgraded environment subject to the usual 12.2 Online Patching editioning considerations for views layered over editioned tables.
Underlying Base Objects
The view is defined over a mix of synonymed base tables, an APPS view, and a lookup view, joined on schedule header, organization, item, and purchasing document keys. Documented referenced objects include:
- CHV_SCHEDULE_HEADERS and CHV_SCHEDULE_ITEMS — the primary scheduling tables supplying the driving schedule line, revision, cumulative quantities, authorization quantities, purchasing unit of measure, receipt references, and descriptive flexfield attributes
CSI.ATTRIBUTE1throughCSI.ATTRIBUTE15. - MTL_SYSTEM_ITEMS and MTL_SYSTEM_ITEMS_KFV — master item definition and the concatenated segment key, providing item description, lead time, minimum and maximum order quantity, fixed lot multiplier, buyer, and primary unit of measure.
- MTL_PARAMETERS — resolves the inventory organization code from the schedule line organization identifier.
- PO_ASL_ATTRIBUTES — supplies the approved supplier list authorization flags, the scheduler identifier, and the enable-authorizations indicator.
- PO_HEADERS and PO_LINES — provide the purchase order number (
SEGMENT1), end date, line number, and vendor product number. - PO_LOOKUP_CODES, joined twice as PLC and PLC2 — supplies displayed field values used in the scheduling UI.
- RCV_SHIPMENT_HEADERS and RCV_TRANSACTIONS — provide the last receipt number, transaction date, and received quantity.
- PER_PEOPLE_F, joined twice as PPF1 and PPF2 — resolves the scheduler and buyer display names.
- CHV_INQ_SV, FND_GLOBAL, HR_GENERAL, HR_PERSON_NAME, and HR_SECURITY — supporting packages referenced for inquiry and security processing around the query.
Key Columns
SCHEDULE_IDandSCHEDULE_ITEM_ID— unique keys for the schedule header and the individual scheduling line.ORGANIZATION_IDandORGANIZATION_CODE— the inventory organization owning the schedule line.ITEM_IDandCONCATENATED_SEGMENTS— item surrogate key and the flexfield concatenated item number.STARTING_CUM_QUANTITY,STARTING_AUTH_QUANTITY,STARTING_CUM_QTY_PRIMARY,STARTING_AUTH_QTY_PRIMARY— cumulative and authorized starting quantities in purchasing and primary units.ITEM_PLANNING_METHOD,FIXED_LOT_MULTIPLIER,MINIMUM_ORDER_QUANTITY,MAXIMUM_ORDER_QUANTITY,FULL_LEAD_TIME— item planning attributes governing replenishment.ENABLE_AUTHORIZATIONS_FLAGandSCHEDULER_ID— ASL-level authorization control and assigned scheduler.PO_HEADER_ID,SEGMENT1,END_DATE,PO_LINE_ID,LINE_NUM,VENDOR_PRODUCT_NUM— the linked purchase document context.LAST_RECEIPT_TRANSACTION_ID,TRANSACTION_DATE,QUANTITY,RECEIPT_NUM— most recent receipt visibility.DISPLAYED_FIELD— UI presentation values sourced from PO_LOOKUP_CODES.- Standard WHO audit columns plus
REQUEST_ID,PROGRAM_ID, andPROGRAM_UPDATE_DATE— concurrency and audit tracking.
Common Use Cases and Queries
Typical usage includes supplier scheduling dashboards, authorization review reports, receipt-versus-schedule reconciliation, and custom outbound interfaces feeding supplier portals. Because the view is not secured by row-level organization security in itself, queries are usually constrained by organization and item.
Schedule lines for a specific organization and item:
SELECT schedule_id, schedule_item_id, concatenated_segments, starting_cum_quantity, starting_auth_quantity, item_planning_method FROM apps.icx_chv_schedule_items_v WHERE organization_code = 'M1' AND concatenated_segments LIKE 'AS%';
Lines awaiting authorization together with buyer and scheduler names:
SELECT schedule_id, segment1, line_num, vendor_product_num, starting_auth_quantity FROM apps.icx_chv_schedule_items_v WHERE enable_authorizations_flag = 'Y' AND item_confirm_status IS NOT NULL ORDER BY segment1, line_num;
Most recent receipt per schedule line:
SELECT schedule_item_id, receipt_num, transaction_date, quantity FROM apps.icx_chv_schedule_items_v WHERE organization_id = :org_id AND last_receipt_transaction_id IS NOT NULL ORDER BY transaction_date DESC;
These queries illustrate the view's principal value: a single query returns scheduling, planning, purchasing, and receiving attributes that would otherwise require joins across at least nine base objects.
-
View: ICX_CHV_SCHEDULE_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_CHV_SCHEDULE_ITEMS_V, object_name:ICX_CHV_SCHEDULE_ITEMS_V, status:VALID, product: ICX - Oracle iProcurement , description: Schedule Lines View , implementation_dba_data: APPS.ICX_CHV_SCHEDULE_ITEMS_V ,
-
View: ICX_CHV_SCHEDULE_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_CHV_SCHEDULE_ITEMS_V, object_name:ICX_CHV_SCHEDULE_ITEMS_V, status:VALID, product: ICX - Oracle iProcurement , description: Schedule Lines View , implementation_dba_data: APPS.ICX_CHV_SCHEDULE_ITEMS_V ,
-
PACKAGE: APPS.CHV_INQ_SV
12.2.2
owner:APPS, object_type:PACKAGE, object_name:CHV_INQ_SV, status:VALID,
-
PACKAGE: APPS.CHV_INQ_SV
12.1.1
owner:APPS, object_type:PACKAGE, object_name:CHV_INQ_SV, status:VALID,
-
SYNONYM: APPS.CHV_SCHEDULE_ITEMS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CHV_SCHEDULE_ITEMS, status:VALID,
-
SYNONYM: APPS.CHV_SCHEDULE_ITEMS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CHV_SCHEDULE_ITEMS, status:VALID,
-
SYNONYM: APPS.CHV_SCHEDULE_HEADERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CHV_SCHEDULE_HEADERS, status:VALID,
-
SYNONYM: APPS.CHV_SCHEDULE_HEADERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CHV_SCHEDULE_HEADERS, status:VALID,
-
SYNONYM: APPS.PO_ASL_ATTRIBUTES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PO_ASL_ATTRIBUTES, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
SYNONYM: APPS.PO_ASL_ATTRIBUTES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PO_ASL_ATTRIBUTES, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
VIEW: APPS.ICX_CHV_SCHEDULE_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_CHV_SCHEDULE_ITEMS_V, object_name:ICX_CHV_SCHEDULE_ITEMS_V, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
VIEW: APPS.ICX_CHV_SCHEDULE_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_CHV_SCHEDULE_ITEMS_V, object_name:ICX_CHV_SCHEDULE_ITEMS_V, 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,
-
SYNONYM: APPS.PO_LINES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PO_LINES, status:VALID,
-
SYNONYM: APPS.RCV_SHIPMENT_HEADERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:RCV_SHIPMENT_HEADERS, status:VALID,
-
SYNONYM: APPS.PO_LINES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PO_LINES, status:VALID,
-
SYNONYM: APPS.RCV_SHIPMENT_HEADERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:RCV_SHIPMENT_HEADERS, status:VALID,
-
SYNONYM: APPS.PO_HEADERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PO_HEADERS, status:VALID,
-
SYNONYM: APPS.PO_HEADERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PO_HEADERS, 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,
-
SYNONYM: APPS.RCV_TRANSACTIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:RCV_TRANSACTIONS, status:VALID,
-
SYNONYM: APPS.RCV_TRANSACTIONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:RCV_TRANSACTIONS, status:VALID,
-
PACKAGE: APPS.HR_SECURITY
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_SECURITY, status:VALID,
-
PACKAGE: APPS.HR_SECURITY
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_SECURITY, status:VALID,
-
SYNONYM: APPS.MTL_SYSTEM_ITEMS_KFV
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_SYSTEM_ITEMS_KFV, status:VALID,
-
SYNONYM: APPS.MTL_SYSTEM_ITEMS_KFV
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_SYSTEM_ITEMS_KFV, status:VALID,
-
VIEW: APPS.PER_PEOPLE_F
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_PEOPLE_F, object_name:PER_PEOPLE_F, status:VALID,
-
VIEW: APPS.PER_PEOPLE_F
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_PEOPLE_F, object_name:PER_PEOPLE_F, status:VALID,
-
SYNONYM: APPS.MTL_PARAMETERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_PARAMETERS, status:VALID,
-
SYNONYM: APPS.MTL_PARAMETERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_PARAMETERS, status:VALID,
-
SYNONYM: APPS.MTL_SYSTEM_ITEMS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_SYSTEM_ITEMS, status:VALID,
-
SYNONYM: APPS.MTL_SYSTEM_ITEMS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_SYSTEM_ITEMS, 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 - ICX Tables and Views
12.2.2
-
eTRM - ICX Tables and Views
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
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 ,
-
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 - PER Tables and Views
12.1.1
description: Table to store NQF Training info for a person ,
-
eTRM - ICX Tables and Views
12.2.2
-
eTRM - ICX Tables and Views
12.1.1