Search Results po_asl_documents_v
Overview
PO_ASL_DOCUMENTS_V is an APPS-owned database view within the Oracle Purchasing (PO) module. Its documented status is VALID, and its description carries the notation "Retrofitted," indicating that the object was carried forward into the current release line (12.1.1 and 12.2.2) as part of the E-Business Suite readiness and upgrade effort. The view presents the association between Approved Supplier List (ASL) entries and the purchasing documents linked to them, joining supplier-list context to the underlying PO_HEADERS_ALL document headers and their lines. As a denormalized read-only presentation, it serves reporting and integration purposes, exposing ASL document assignments alongside header, line, organization, and vendor attributes in a single queryable surface.
Users searching for the column DOCUMENT_STATUS_DSP are typically seeking the resolved, display-ready status of a purchasing document attached to an ASL entry. The view supplies this value through a DECODE expression rather than a stored column: for QUOTATION type documents it returns PH.STATUS_LOOKUP_CODE, while for BLANKET and CONTRACT documents it returns PH.AUTHORIZATION_STATUS. This conditional projection is what reporting tools surface as the document status display value.
Underlying Base Objects
The view is defined over the following documented base objects: PO_ASL_DOCUMENTS (SYNONYM), PO_APPROVED_SUPPLIER_LIST (SYNONYM), PO_HEADERS_ALL (SYNONYM), PO_LINES_ALL (SYNONYM), PO_LOOKUP_CODES (VIEW), MTL_PARAMETERS (SYNONYM), HR_ORG_UNITS_NO_JOIN (VIEW), HR_ALL_ORGANIZATION_UNITS_TL (SYNONYM), plus the FND_GLOBAL, HR_GENERAL, and HR_SECURITY packages. PO_ASL_DOCUMENTS is the driving table, holding the ASL-to-document link keyed by ASL_ID and DOCUMENT_HEADER_ID. PO_APPROVED_SUPPLIER_LIST provides vendor, vendor site, item, and category context. PO_HEADERS_ALL and PO_LINES_ALL (the latter an outer join) supply document header and line detail. PO_LOOKUP_CODES resolves both the document type display text and the status display text. MTL_PARAMETERS and the HR organization views supply the using-organization code and name. The HR packages and FND_GLOBAL apply organizational security and session context at query time.
Key Columns
- ASL_ID — identifier of the Approved Supplier List entry.
- DOCUMENT_HEADER_ID — foreign key to PO_HEADERS_ALL.PO_HEADER_ID for the linked document.
- DOCUMENT_TYPE_CODE / DISPLAYED_FIELD — the ASL document type (QUOTATION, BLANKET, CONTRACT) and its lookup-displayed label.
- DOCUMENT_STATUS_DSP — the resolved status of the document, derived by DECODE from status or authorization status per document type.
- SEGMENT1 — the document number from the header.
- ORGANIZATION_CODE, NAME — using organization code and organization name.
- VENDOR_ID, VENDOR_SITE_ID, ITEM_ID, CATEGORY_ID — supplier-list qualification attributes.
- START_DATE, END_DATE — validity period of the document.
- SEQUENCE_NUM, LINE_NUM — ordering attributes for the ASL document and its line.
- ATTRIBUTE1–ATTRIBUTE15, ATTRIBUTE_CATEGORY — descriptive flexfield columns from PO_ASL_DOCUMENTS.
- Audit columns — CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN, REQUEST_ID, PROGRAM_ID.
Common Use Cases and Queries
Typical usages include ASL-to-document reporting, supplier qualification audits, and integration extracts that require the displayed status of blanket agreements or contracts tied to a supplier list entry. Because date-effective HR security is applied, results are filtered by the querying user's organization access.
- List all documents for a given ASL entry with their resolved status.
- Report blanket agreements and contracts by supplier and organization with status display.
- Extract ASL document associations for interface into external procurement systems.
Sample query:
SELECT asl_id,
document_type_code,
displayed_field AS document_type_dsp,
document_status_dsp,
segment1 AS document_number,
organization_code,
start_date,
end_date
FROM apps.po_asl_documents_v
WHERE asl_id = :p_asl_id
ORDER BY sequence_num;
The view is read-only and must be queried as APPS or through a synonym, with the invoking session's organization context properly initialized.
-
View: PO_ASL_DOCUMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_ASL_DOCUMENTS_V, object_name:PO_ASL_DOCUMENTS_V, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.PO_ASL_DOCUMENTS_V ,
-
View: PO_ASL_DOCUMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_ASL_DOCUMENTS_V, object_name:PO_ASL_DOCUMENTS_V, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.PO_ASL_DOCUMENTS_V ,
-
SYNONYM: APPS.PO_ASL_DOCUMENTS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PO_ASL_DOCUMENTS, status:VALID,
-
SYNONYM: APPS.PO_ASL_DOCUMENTS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PO_ASL_DOCUMENTS, status:VALID,
-
SYNONYM: APPS.PO_APPROVED_SUPPLIER_LIST
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PO_APPROVED_SUPPLIER_LIST, status:VALID,
-
SYNONYM: APPS.PO_APPROVED_SUPPLIER_LIST
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PO_APPROVED_SUPPLIER_LIST, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
VIEW: APPS.HR_ORG_UNITS_NO_JOIN
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_ORG_UNITS_NO_JOIN, object_name:HR_ORG_UNITS_NO_JOIN, status:VALID,
-
VIEW: APPS.HR_ORG_UNITS_NO_JOIN
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_ORG_UNITS_NO_JOIN, object_name:HR_ORG_UNITS_NO_JOIN, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
VIEW: APPS.PO_ASL_DOCUMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_ASL_DOCUMENTS_V, object_name:PO_ASL_DOCUMENTS_V, status:VALID,
-
VIEW: APPS.PO_ASL_DOCUMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_ASL_DOCUMENTS_V, object_name:PO_ASL_DOCUMENTS_V, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
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.HR_ALL_ORGANIZATION_UNITS_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HR_ALL_ORGANIZATION_UNITS_TL, status:VALID,
-
SYNONYM: APPS.HR_ALL_ORGANIZATION_UNITS_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HR_ALL_ORGANIZATION_UNITS_TL, 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.PO_LINES_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PO_LINES_ALL, status:VALID,
-
SYNONYM: APPS.PO_LINES_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PO_LINES_ALL, status:VALID,
-
SYNONYM: APPS.PO_HEADERS_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PO_HEADERS_ALL, status:VALID,
-
SYNONYM: APPS.PO_HEADERS_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PO_HEADERS_ALL, status:VALID,
-
SYNONYM: APPS.MTL_PARAMETERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_PARAMETERS, status:VALID,
-
SYNONYM: APPS.MTL_PARAMETERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_PARAMETERS, 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 - PO Tables and Views
12.1.1
description: Temporary table for tracking a receiving upgrade from Release 9 to Release 10 ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - PO Tables and Views
12.2.2
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.2.2
description: Table to store NQF Training info for a person ,
-
eTRM - PER Tables and Views
12.1.1
description: Table to store NQF Training info for a person ,
-
eTRM - PO Tables and Views
12.1.1
description: Temporary table for tracking a receiving upgrade from Release 9 to Release 10 ,
-
eTRM - PO Tables and Views
12.2.2
description: Temporary table for tracking a receiving upgrade from Release 9 to Release 10 ,
-
eTRM - PER Tables and Views
12.2.2
description: Table to store NQF Training info for a person ,
-
eTRM - PER Tables and Views
12.1.1
description: Table to store NQF Training info for a person ,