Search Results schedule_items
Overview
APPS.CHV_AUTHORIZATIONS_V is a reporting view within the Oracle E-Business Suite procurement family, exposed under the APPS schema and available in both 12.1.1 and 12.2.2. It presents the subset of authorization records in the sourcing/scheduling domain that pertain specifically to scheduled items — that is, releases and schedules created against approved blanket purchase agreements and similar authorizations.
The view exists to support reporting and integration scenarios where consumers need authorization-level attributes (quantities, units of measure, time fences, cutoff dates) joined to a human-readable authorization type description, without having to replicate the reference-type filter or the lookup join themselves. Because the filter to REFERENCE_TYPE = 'SCHEDULE_ITEMS' is hard-coded in the view definition, any query against APPS.CHV_AUTHORIZATIONS_V returns only schedule-item authorizations, which makes it a convenient and self-documenting source for purchasing schedules and release reporting.
Underlying Base Objects
The view is defined over three documented objects:
- CHV_AUTHORIZATIONS (SYNONYM) — the primary authorizations table, aliased CAU. This table stores authorization scheduling and sourcing records, including the reference identifier, authorization code, sequence, quantities, time fence, and cutoff date.
- PO_LOOKUP_CODES (VIEW) — aliased PLC, a purchasing lookup view used to resolve the authorization code to a displayed description. The join is on
CAU.AUTHORIZATION_CODE = PLC.LOOKUP_CODEwithPLC.LOOKUP_TYPE = 'AUTHORIZATION_TYPE'. - FND_GLOBAL (PACKAGE) — the standard EBS concurrent/global context package. Although not referenced in the visible SELECT list, it is part of the documented base object set and is typically invoked by the WHO columns and security predicates that EBS views rely on for organization and responsibility context.
The join between CHV_AUTHORIZATIONS and PO_LOOKUP_CODES is effectively an inner join, so an authorization code with no corresponding AUTHORIZATION_TYPE lookup row will not appear in the view.
Key Columns
The view exposes the ROWID of CHV_AUTHORIZATIONS along with the following significant attributes:
- REFERENCE_ID — the identifier of the referenced document or schedule item.
- AUTHORIZATION_CODE — the authorization type code from CHV_AUTHORIZATIONS.
- DISPLAYED_FIELD — the lookup description obtained from PO_LOOKUP_CODES, providing the user-facing label for the authorization code.
- AUTHORIZATION_SEQUENCE — the ordering sequence of the authorization record.
- PRIMARY_UNIT_OF_MEASURE / PURCHASING_UNIT_OF_MEASURE — the primary and purchasing UOMs.
- SCHEDULE_QUANTITY_PRIMARY / SCHEDULE_QUANTITY — the scheduled quantity expressed in the primary UOM and in the purchasing UOM respectively.
- TIMEFENCE_DAYS — the number of days in the scheduling time fence.
- CUTOFF_DATE — the date beyond which scheduling is restricted.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1–15 — the standard EBS descriptive flexfield columns.
- LAST_UPDATE_DATE, LAST_UPDATED_BY, CREATION_DATE, CREATED_BY, LAST_UPDATE_LOGIN — WHO audit columns.
- REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE — concurrent program context columns.
Common Use Cases and Queries
Typical uses include reporting scheduled releases against blanket agreements, reconciling schedule quantities by authorization type, and integrating schedule-item authorizations into external systems. A representative query follows:
SELECT reference_id, authorization_code, displayed_field, schedule_quantity, schedule_quantity_primary, timefence_days, cutoff_date FROM apps.chv_authorizations_v WHERE cutoff_date < SYSDATE;SELECT displayed_field, SUM(schedule_quantity) FROM apps.chv_authorizations_v GROUP BY displayed_field ORDER BY displayed_field;SELECT reference_id, authorization_sequence, primary_unit_of_measure, purchasing_unit_of_measure FROM apps.chv_authorizations_v WHERE reference_id = :reference_id ORDER BY authorization_sequence;
-
VIEW: APPS.CHV_AUTHORIZATIONS_V
12.1.1
-
VIEW: APPS.POS_CHV_AUTHORIZATIONS_V
12.2.2
-
VIEW: APPS.CHV_AUTHORIZATIONS_V
12.2.2
-
VIEW: APPS.POS_CHV_AUTHORIZATIONS_V
12.1.1
-
APPS.CHV_AUTHORIZATIONS_PKG_S1 SQL Statements
12.2.2
-
Lookup Type: REFERENCE_TYPE
12.1.1
product: PO - Purchasing , meaning: Meaning N/A for : REFERENCE_TYPE ,
-
Lookup Type: REFERENCE_TYPE
12.2.2
product: PO - Purchasing , meaning: Meaning N/A for : REFERENCE_TYPE ,
-
APPS.CHV_AUTHORIZATIONS_PKG_S1 SQL Statements
12.1.1
-
PACKAGE BODY: APPS.CHV_AUTHORIZATIONS_PKG_S1
12.1.1
-
View: POS_CHV_AUTHORIZATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POS_CHV_AUTHORIZATIONS_V POS.POS_CHV_AUTHORIZATIONS_V, object_name:POS_CHV_AUTHORIZATIONS_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.POS_CHV_AUTHORIZATIONS_V ,
-
View: POS_CHV_AUTHORIZATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POS_CHV_AUTHORIZATIONS_V POS.POS_CHV_AUTHORIZATIONS_V, object_name:POS_CHV_AUTHORIZATIONS_V, status:VALID, product: POS - iSupplier Portal , description: used to select the detailed info related to authorization , implementation_dba_data: APPS.POS_CHV_AUTHORIZATIONS_V ,
-
PACKAGE BODY: APPS.CHV_AUTHORIZATIONS_PKG_S1
12.2.2
-
APPS.CHV_CREATE_AUTHORIZATIONS SQL Statements
12.1.1
-
APPS.CHV_CREATE_AUTHORIZATIONS SQL Statements
12.2.2
-
APPS.CHV_REBUILD_SCHEDULES SQL Statements
12.1.1
-
APPS.CHV_REBUILD_SCHEDULES SQL Statements
12.2.2
-
View: POS_CHV_AUTHORIZATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POS_CHV_AUTHORIZATIONS_V, object_name:POS_CHV_AUTHORIZATIONS_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.POS_CHV_AUTHORIZATIONS_V ,
-
View: CHV_AUTHORIZATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CHV.CHV_AUTHORIZATIONS_V, object_name:CHV_AUTHORIZATIONS_V, status:VALID, product: CHV - Supplier Scheduling , description: - Retrofitted , implementation_dba_data: APPS.CHV_AUTHORIZATIONS_V ,
-
View: CHV_AUTHORIZATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CHV.CHV_AUTHORIZATIONS_V, object_name:CHV_AUTHORIZATIONS_V, status:VALID, product: CHV - Supplier Scheduling , description: - Retrofitted , implementation_dba_data: APPS.CHV_AUTHORIZATIONS_V ,
-
PACKAGE BODY: APPS.CHV_CREATE_AUTHORIZATIONS
12.1.1
-
PACKAGE BODY: APPS.CHV_CREATE_AUTHORIZATIONS
12.2.2
-
PACKAGE BODY: APPS.CHV_REBUILD_SCHEDULES
12.1.1
-
PACKAGE BODY: APPS.CHV_REBUILD_SCHEDULES
12.2.2
-
APPS.ECE_SPSO_TRANS1 SQL Statements
12.2.2
-
APPS.ECE_SPSO_TRANS1 SQL Statements
12.1.1
-
APPS.AP_PURGE_PKG SQL Statements
12.1.1
-
APPS.CHV_REBUILD_SCHEDULES dependencies on CHV_AUTHORIZATIONS
12.2.2
-
APPS.CHV_REBUILD_SCHEDULES dependencies on CHV_AUTHORIZATIONS
12.1.1
-
APPS.ECE_SPSO_TRANS1 dependencies on CHV_AUTHORIZATIONS
12.1.1
-
APPS.ECE_SPSO_TRANS1 dependencies on CHV_AUTHORIZATIONS
12.2.2
-
APPS.CHV_AUTHORIZATIONS_PKG_S1 dependencies on CHV_AUTHORIZATIONS
12.2.2
-
APPS.CHV_AUTHORIZATIONS_PKG_S1 dependencies on CHV_AUTHORIZATIONS
12.1.1
-
APPS.AP_PURGE_PKG SQL Statements
12.2.2
-
APPS.AP_PURGE_PKG dependencies on CHV_PURGE_SCHEDULE_LIST
12.2.2
-
APPS.AP_PURGE_PKG dependencies on CHV_PURGE_SCHEDULE_LIST
12.1.1
-
APPS.CHV_CREATE_AUTHORIZATIONS dependencies on CHV_AUTHORIZATIONS
12.2.2
-
APPS.CHV_CREATE_AUTHORIZATIONS dependencies on CHV_AUTHORIZATIONS
12.1.1
-
PACKAGE BODY: APPS.AP_PURGE_PKG
12.1.1
-
PACKAGE BODY: APPS.ECE_SPSO_TRANS1
12.1.1
-
PACKAGE BODY: APPS.ECE_SPSO_TRANS1
12.2.2
-
PACKAGE BODY: APPS.AP_PURGE_PKG
12.2.2