Search Results chv_bucket_patterns
Overview
PO_ASL_ATTRIBUTES_V is an APPS-owned reporting view in the Oracle E-Business Suite Purchasing (PO) module, valid in both 12.1.1 and 12.2.2. It exposes the sourcing rules and supplier scheduling attributes maintained at the Approved Supplier List (ASL) attribute level, denormalized across the lookup, organization, and person entities that the base table references only by identifier. The view is described in ETRM as "Retrofitted," indicating it was re-pointed or re-created during the 12.2 upgrade cycle while preserving its pre-12.2 column contract for downstream consumers.
Its reporting role is to translate coded values into user-facing meanings. Document sourcing method, release generation method, plan and ship schedule types, purchasing unit of measure, VMI replenishment approval, and consigned billing cycle are all surfaced as DISPLAYED_FIELD text rather than raw lookup codes. Similarly, organization identifiers are resolved to organization codes and names, bucket pattern identifiers are resolved to bucket pattern names, and the scheduler identifier is resolved to a full person name. This makes the view suitable for ASL inquiry extracts, supplier scheduling audit reports, and interface programs that must not embed lookup-decoding logic of their own.
Underlying Base Objects
The documented base objects are PO_ASL_ATTRIBUTES, PO_LOOKUP_CODES, MTL_PARAMETERS, PER_PEOPLE_F, HR_ORG_UNITS_NO_JOIN, HR_ALL_ORGANIZATION_UNITS_TL, CHV_BUCKET_PATTERNS, plus the FND_GLOBAL, HR_GENERAL, HR_PERSON_NAME, and HR_SECURITY packages used for the organization and person resolution.
PO_ASL_ATTRIBUTES is the driving table and supplies the ASL identifier, using organization, document sourcing and release generation methods, schedule enablement flags and schedule types, plan and ship bucket pattern identifiers, autoschedule and authorization flags, vendor, vendor site, item, category, the DFF attribute segment columns, the VMI and consigned inventory attributes, the ordering constraints (minimum order quantity, fixed lot multiple, fixed order quantity), and the standard WHO audit columns. PO_LOOKUP_CODES is joined four times to decode the sourcing method, release generation method, and the plan and ship schedule types. MTL_PARAMETERS provides the inventory organization code. CHV_BUCKET_PATTERNS is joined twice — once for the plan bucket pattern and once for the ship bucket pattern — which is the direct source of the bucket pattern names. PER_PEOPLE_F and the HR packages resolve the scheduler and the owning organization.
Because CHV_BUCKET_PATTERNS is referenced as a synonym, the view inherits whatever bucket pattern definitions exist in the current operating unit's context, including patterns created for supplier scheduling in the Planning or Purchasing horizon windows.
Key Columns
ASL_ID,USING_ORGANIZATION_ID,ORGANIZATION_CODE,NAME— identity of the ASL entry and the inventory organization in which it applies.PLAN_BUCKET_PATTERN_ID,SHIP_BUCKET_PATTERN_ID— foreign keys into the bucket pattern definitions; the view pairs each withBUCKET_PATTERN_NAMEfrom CHV_BUCKET_PATTERNS for the plan and ship horizons respectively.DOCUMENT_SOURCING_METHOD,RELEASE_GENERATION_METHOD,PLAN_SCHEDULE_TYPE,SHIP_SCHEDULE_TYPE,PURCHASING_UNIT_OF_MEASURE— decoded lookup values governing how releases and schedules are generated.ENABLE_PLAN_SCHEDULE_FLAG,ENABLE_SHIP_SCHEDULE_FLAG,ENABLE_AUTOSCHEDULE_FLAG,ENABLE_AUTHORIZATIONS_FLAG— scheduling and authorization controls.SCHEDULER_ID,FULL_NAME— the assigned scheduler and the resolved person name.ENABLE_VMI_FLAG,VMI_MIN_QTY,VMI_MAX_QTY,VMI_REPLENISHMENT_APPROVAL,REPLENISHMENT_METHOD,CONSIGNED_FROM_SUPPLIER_FLAG,CONSIGNED_BILLING_CYCLE— VMI and consigned inventory terms.PRICE_UPDATE_TOLERANCE,PROCESSING_LEAD_TIME,DELIVERY_CALENDAR,MIN_ORDER_QTY,FIXED_LOT_MULTIPLE,FIXED_ORDER_QUANTITY,FORECAST_HORIZON— ordering and planning constraints.ATTRIBUTE_CATEGORYandATTRIBUTE1throughATTRIBUTE15— descriptive flexfield segments.
Common Use Cases and Queries
The most frequent use is reporting ASL scheduling setup by supplier and item, particularly to confirm which bucket pattern is assigned to the plan and ship horizons. A typical query joining the view to PO_ASL_ATTRIBUTES for a specific vendor and organization is:
SELECT asl_id, organization_code, bucket_pattern_name, ship_schedule_type, enable_plan_schedule_flag FROM po_asl_attributes_v WHERE plan_bucket_pattern_id IS NOT NULL;SELECT v.vendor_id, v.item_id, v.plan_bucket_pattern_id, v.bucket_pattern_name FROM po_asl_attributes_v v WHERE v.using_organization_id = :org_id;SELECT asl_id, full_name, enable_autoschedule_flag FROM po_asl_attributes_v WHERE enable_autoschedule_flag = 'Y';
Related scenarios include VMI and consigned inventory audits restricted by ENABLE_VMI_FLAG or CONSIGNED_FROM_SUPPLIER_FLAG, supplier scheduling extracts that need the decoded release generation method rather than the lookup code, and diagnostics that identify ASL rows whose plan or ship bucket pattern identifier no longer resolves to an active CHV_BUCKET_PATTERNS record.
-
View: PO_ASL_ATTRIBUTES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_ASL_ATTRIBUTES_V, object_name:PO_ASL_ATTRIBUTES_V, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.PO_ASL_ATTRIBUTES_V ,
-
View: PO_APPROVED_SUPPLIER_LIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_APPROVED_SUPPLIER_LIST_V, object_name:PO_APPROVED_SUPPLIER_LIST_V, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.PO_APPROVED_SUPPLIER_LIST_V ,
-
View: PO_APPROVED_SUPPLIER_LIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_APPROVED_SUPPLIER_LIST_V, object_name:PO_APPROVED_SUPPLIER_LIST_V, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.PO_APPROVED_SUPPLIER_LIST_V ,
-
View: PO_ASL_ATTRIBUTES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_ASL_ATTRIBUTES_V, object_name:PO_ASL_ATTRIBUTES_V, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.PO_ASL_ATTRIBUTES_V ,
-
View: POS_CHV_SCHEDULE_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POS_CHV_SCHEDULE_HEADERS_V, object_name:POS_CHV_SCHEDULE_HEADERS_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.POS_CHV_SCHEDULE_HEADERS_V ,
-
View: POS_CHV_SCHEDULE_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POS_CHV_SCHEDULE_HEADERS_V POS.POS_CHV_SCHEDULE_HEADERS_V, object_name:POS_CHV_SCHEDULE_HEADERS_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.POS_CHV_SCHEDULE_HEADERS_V ,