Search Results plan_bucket_pattern_id
Overview
The PO_ASL_ATTRIBUTES_VAL_V view in the APPS schema is a validated database object within the Oracle E-Business Suite Purchasing (PO) module. It exposes the approved supplier list (ASL) attribute records that are currently active, filtering out any ASL entries flagged as disabled. Its core purpose is to present a consolidated, reportable set of sourcing, scheduling, supplier, and Vendor Managed Inventory (VMI) attributes for approved suppliers across the enterprise. Because the view already applies the DISABLE_FLAG exclusion logic, it is the preferred source for reporting and integration logic that must consider only enabled supplier relationships.
In Oracle EBS 12.1.1 and 12.2.2, this object supports sourcing analysis, supplier performance reporting, plan and ship scheduling configuration, and VMI and consigned inventory processing. The user attribute PLAN_BUCKET_PATTERN_ID and its close companion SHIP_BUCKET_PATTERN_ID, for example, link ASL attributes to scheduling bucketing patterns used in supplier scheduling workflows.
Underlying Base Objects
The view text is defined over two base objects, both referenced as synonyms in the APPS schema:
PO_ASL_ATTRIBUTES— the primary attribute table storing per-ASL sourcing, scheduling, supplier, VMI, and consigned inventory settings. All columns prefixed with the aliasPAAoriginate here.PO_APPROVED_SUPPLIER_LIST— the approved supplier list header, aliasedPASL. It supplies the join key and the disabled status.
The view joins the two using PAA.ASL_ID = PASL.ASL_ID and applies the filter NVL(PASL.DISABLE_FLAG, 'N') = 'N', returning only rows whose supplier list entry is not disabled. Since the view is essentially a filtered projection of PO_ASL_ATTRIBUTES, it inherits that table's column types and update semantics.
Key Columns
ASL_ID— primary key linking attributes to an approved supplier list entry.USING_ORGANIZATION_ID— the inventory organization consuming these sourcing attributes.VENDOR_ID,VENDOR_SITE_ID,ITEM_ID,CATEGORY_ID— identify the supplier, site, item, and category context of the ASL row.DOCUMENT_SOURCING_METHODandRELEASE_GENERATION_METHOD— control sourcing and release behavior.PLAN_SCHEDULE_TYPE,SHIP_SCHEDULE_TYPE,PLAN_BUCKET_PATTERN_ID,SHIP_BUCKET_PATTERN_ID— define supplier scheduling configuration; the bucket pattern IDs reference scheduling pattern definitions.ENABLE_PLAN_SCHEDULE_FLAG,ENABLE_SHIP_SCHEDULE_FLAG,ENABLE_AUTOSCHEDULE_FLAG,ENABLE_AUTHORIZATIONS_FLAG,SCHEDULER_ID— govern scheduling and authorization enablement.PRICE_UPDATE_TOLERANCE,PROCESSING_LEAD_TIME,DELIVERY_CALENDAR,MIN_ORDER_QTY,FIXED_LOT_MULTIPLE,FIXED_ORDER_QUANTITY,FORECAST_HORIZON— operational sourcing parameters.ENABLE_VMI_FLAG,VMI_MIN_QTY,VMI_MAX_QTY,VMI_MIN_DAYS,VMI_MAX_DAYS,REPLENISHMENT_METHOD,CONSIGNED_FROM_SUPPLIER_FLAG,CONSIGNED_BILLING_CYCLE— VMI and consigned inventory settings.ATTRIBUTE_CATEGORYandATTRIBUTE1–ATTRIBUTE15— descriptive flexfield segments.- Standard audit and concurrent-processing columns such as
LAST_UPDATE_DATE,CREATED_BY,REQUEST_ID,PROGRAM_ID.
Common Use Cases and Queries
Typical scenarios include identifying the enabled ASL attributes for an item/organization combination, auditing scheduling bucket pattern assignments, and extracting VMI parameters for replenishment processing. The following query returns the active sourcing attributes for a given item and vendor:
SELECT v.asl_id,
v.using_organization_id,
v.vendor_id,
v.item_id,
v.document_sourcing_method,
v.plan_schedule_type,
v.plan_bucket_pattern_id,
v.enable_vmi_flag
FROM po_asl_attributes_val_v v
WHERE v.vendor_id = :p_vendor_id
AND v.item_id = :p_item_id;
Because the view excludes disabled supplier list entries, no additional DISABLE_FLAG filtering is required in reporting queries, making it suitable for integration extracts that must reflect only active approved supplier arrangements.
-
View: PO_ASL_ATTRIBUTES_VAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_ASL_ATTRIBUTES_VAL_V, object_name:PO_ASL_ATTRIBUTES_VAL_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.PO_ASL_ATTRIBUTES_VAL_V ,
-
View: POS_ORD_MODIFIERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POS_ORD_MODIFIERS_V POS.POS_ORD_MODIFIERS_V, object_name:POS_ORD_MODIFIERS_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.POS_ORD_MODIFIERS_V ,
-
View: POS_ORD_MODIFIERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POS_ORD_MODIFIERS_V, object_name:POS_ORD_MODIFIERS_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.POS_ORD_MODIFIERS_V ,
-
View: PO_ASL_ATTRIBUTES_VAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_ASL_ATTRIBUTES_VAL_V, object_name:PO_ASL_ATTRIBUTES_VAL_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.PO_ASL_ATTRIBUTES_VAL_V ,
-
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_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: 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_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 ,