Search Results consigned_billing_cycle
Overview
POBV_APPROVED_SUPPLIER_LISTS is a read-only view owned by the APPS schema and shipped with the Oracle Purchasing (PO) module. It presents the Approved Supplier List (ASL) definition together with the header-level status and the sourcing-rule attributes maintained for each ASL entry, exposing both the raw key/flag columns and a set of Oracle Forms LOV/List of Values descriptor strings (prefixed _LA:) that the E-Business Suite framework uses to render lookup values correctly on the corresponding form and folder blocks.
The view is categorized in the Oracle E-Business Suite Technical Reference Manual (ETRM) as Retrofitted, meaning it was carried into the 12.1.1 and 12.2.2 releases to preserve backward compatibility for existing customizations, reports and integrations written against earlier releases. It is not a base transactional table; it is a queryable projection designed for reporting and integration consumption, joining the ASL master record to its status and its attributes. The form-oriented pseudo-columns do not alter the semantics of the data but make the view suitable as a single source for both online form queries and programmatic extraction.
Underlying Base Objects
The view is defined over three documented synonyms:
PO_APPROVED_SUPPLIER_LIST(synonym) — aliasedAL; supplies the ASL identity, owning/using inventory organization, vendor, vendor site, item, category, manufacturer, comments, review date and audit columns.PO_ASL_STATUSES(synonym) — aliasedST; supplies the status code and its description.PO_ASL_ATTRIBUTES(synonym) — aliasedAT; supplies planning, sourcing and consignment attributes for the ASL line.
The join is: AL.ASL_ID = AT.ASL_ID and AL.USING_ORGANIZATION_ID = AT.USING_ORGANIZATION_ID, with AL.ASL_STATUS_ID = ST.STATUS_ID. The view text is declared WITH READ ONLY, confirming that no DML is possible through it.
Key Columns
ASL_ID— primary identifier of the approved supplier list entry.USING_ORGANIZATION_ID,OWNING_ORGANIZATION_ID— the inventory organizations that consume and own the sourcing rule.STATUS,STATUS_DESCRIPTION— approval state of the ASL record.VENDOR_ID,VENDOR_SITE_ID,ITEM_ID,CATEGORY_ID,MANUFACTURER_ID,MANUFACTURER_ASL_ID— the sourcing parties and the item/category scope.REVIEW_BY_DATE,PRIMARY_VENDOR_ITEM— review control and primary sourcing indicator.PURCHASING_UNIT_OF_MEASURE,MIN_ORDER_QTY,PROCESSING_LEAD_TIME,PRICE_UPDATE_TOLERANCE,COUNTRY_OF_ORIGIN_CODE,DELIVERY_CALENDAR,SCHEDULER_ID— ordering and receipt attributes.ENABLE_VMI_FLAG,VMI_MIN_QTY,VMI_MAX_QTY,ENABLE_VMI_AUTO_REPLENISH_FLAG,VMI_REPLENISHMENT_APPROVAL— Vendor Managed Inventory controls.CONSIGNED_FROM_SUPPLIER_FLAG,LAST_BILLING_DATE,CONSIGNED_BILLING_CYCLE— consignment sourcing and billing-cycle definition, directly relevant to searches such as consigned_billing_cycle._LA:...descriptor columns — framework lookup references for vendor business type, document sourcing method, release generation method and schedule/flag lookups.
Common Use Cases and Queries
The view is typically used to report ASL coverage by organization and item, to validate sourcing rules before requisition/purchase order creation, and to extract consignment configuration such as billing cycle and last billing date.
List consigned ASLs and their billing cycle for one organization:
SELECT asl_id, using_organization_id, vendor_id, vendor_site_id,
item_id, status, consigned_billing_cycle, last_billing_date
FROM apps.pobv_approved_supplier_lists
WHERE using_organization_id = :org_id
AND consigned_from_supplier_flag = 'Y';
Find ASLs approaching their review date:
SELECT asl_id, vendor_id, item_id, status_description, review_by_date FROM apps.pobv_approved_supplier_lists WHERE review_by_date <= SYSDATE + 30 AND status = 'APPROVED';
Because the view is read-only and joined to status and attributes, it is safe for concurrent, real-time reporting. For transactional updates, the underlying PO_APPROVED_SUPPLIER_LIST and PO_ASL_ATTRIBUTES base tables must be used.
-
View: POBV_APPROVED_SUPPLIER_LISTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_APPROVED_SUPPLIER_LISTS, object_name:POBV_APPROVED_SUPPLIER_LISTS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POBV_APPROVED_SUPPLIER_LISTS ,
-
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: POBV_APPROVED_SUPPLIER_LISTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_APPROVED_SUPPLIER_LISTS, object_name:POBV_APPROVED_SUPPLIER_LISTS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POBV_APPROVED_SUPPLIER_LISTS ,
-
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: POFV_APPROVED_SUPPLIER_LISTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_APPROVED_SUPPLIER_LISTS, object_name:POFV_APPROVED_SUPPLIER_LISTS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POFV_APPROVED_SUPPLIER_LISTS ,
-
View: POFV_APPROVED_SUPPLIER_LISTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_APPROVED_SUPPLIER_LISTS, object_name:POFV_APPROVED_SUPPLIER_LISTS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POFV_APPROVED_SUPPLIER_LISTS ,