Search Results hold_status
Overview
PO_SUPPLIERS_VAL_V is a validation view owned by the APPS schema in Oracle E-Business Suite (12.1.1 / 12.2.2). It is classified under the Purchasing (PO) product family and its ETRM description carries the annotation "10SC ONLY - Retrofitted," indicating that the object originated from an Oracle 10SC (Supply Chain) code line and was subsequently retrofitted into the standard EBS schema for compatibility purposes. The view presents a filtered, business-ready projection of active supplier (vendor) records, exposing header-level attributes such as the vendor name, vendor number, tax identifiers, payment terms, locations, and purchasing control flags, together with a decoded hold status description.
Its principal role is to serve as a validation source. Because it returns only suppliers that are enabled, currently effective, and whose hold flag resolves to a valid YES_NO lookup meaning, it provides a clean, low-cardinality list suitable for use in value sets, LOV (List of Values) definitions, and downstream validation logic. It also supports reporting and integration scenarios where consumer code requires only currently active vendors rather than the full vendor master.
Underlying Base Objects
The view is defined over two documented base objects plus a referenced package:
- PO_VENDORS (VIEW) — aliased as
POVin the view text. This supplies the vendor master columns and is the primary driving object. - FND_LOOKUPS (VIEW) — aliased as
FL. Joined to decode the hold flag into a meaningful description. - FND_GLOBAL (PACKAGE) — referenced for session/context resolution, a common dependency in EBS validation views.
The join between PO_VENDORS and FND_LOOKUPS is performed on NVL(POV.HOLD_FLAG,'N') = FL.LOOKUP_CODE with the restricting predicate FL.LOOKUP_TYPE = 'YES_NO'. Supplier rows are further filtered by POV.ENABLED_FLAG = 'Y' and by an effective-date window: SYSDATE BETWEEN NVL(POV.START_DATE_ACTIVE, SYSDATE-1) AND NVL(POV.END_DATE_ACTIVE, SYSDATE+1). This ensures that only vendors whose active date range brackets the current system date are returned.
Key Columns
- VENDOR_ID — Primary surrogate key of the supplier; used to join back to
PO_VENDORSand related supplier sites. - VENDOR_NAME and SEGMENT1 — The supplier display name and the vendor identification number, respectively.
- NUM_1099, TYPE_1099 — US 1099 tax reporting number and its associated type.
- VAT_REGISTRATION_NUM and VAT_CODE — VAT registration number and tax classification code.
- HOLD_STATUS — The decoded hold flag from
FND_LOOKUPS.MEANING, giving a human-readable hold description. - HOLD_FLAG — Underlying raw flag wrapped in
NVL(...,'N'). - TERMS_ID, SHIP_TO_LOCATION_ID, BILL_TO_LOCATION_ID — Payment terms and default location references.
- SHIP_VIA_LOOKUP_CODE, FOB_LOOKUP_CODE, FREIGHT_TERMS_LOOKUP_CODE — Default shipping and freight attributes.
- INVOICE_CURRENCY_CODE — Default invoicing currency for the supplier.
- RECEIPT_REQUIRED_FLAG and ALLOW_UNORDERED_RECEIPTS_FLAG — Purchasing control flags governing receipt behavior.
Common Use Cases and Queries
Typical uses include driving a supplier LOV in a custom form, validating a supplied vendor identifier, and producing active-supplier reports for purchasing analysis. A representative query is:
SELECT vendor_id, vendor_name, segment1, hold_status, terms_id FROM po_suppliers_val_v WHERE UPPER(vendor_name) LIKE :p_name;— parameterized supplier lookup.SELECT COUNT(*) FROM po_suppliers_val_v;— count of currently active, enabled suppliers.SELECT s.vendor_name, pv.end_date_active FROM po_suppliers_val_v s, po_vendors pv WHERE s.vendor_id = pv.vendor_id;— report joining validation view back to the vendor master.
Because the view already enforces the enabled and effective-date predicates, consuming SQL need not repeat those conditions.
-
View: PO_SUPPLIERS_VAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_SUPPLIERS_VAL_V, object_name:PO_SUPPLIERS_VAL_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.PO_SUPPLIERS_VAL_V ,
-
View: RCV_SUPPLIERS_VAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_SUPPLIERS_VAL_V, object_name:RCV_SUPPLIERS_VAL_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.RCV_SUPPLIERS_VAL_V ,
-
VIEW: APPS.RCV_SUPPLIERS_VAL_V
12.2.2
-
VIEW: APPS.PO_SUPPLIERS_VAL_V
12.2.2
-
VIEW: APPS.RCV_SOURCES_BOTH_VAL_V
12.1.1
-
VIEW: APPS.RCV_SOURCES_BOTH_VAL_V
12.2.2
-
View: PO_SUPPLIERS_VAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_SUPPLIERS_VAL_V, object_name:PO_SUPPLIERS_VAL_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.PO_SUPPLIERS_VAL_V ,
-
View: RCV_SUPPLIERS_VAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_SUPPLIERS_VAL_V, object_name:RCV_SUPPLIERS_VAL_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.RCV_SUPPLIERS_VAL_V ,
-
VIEW: APPS.RCV_SUPPLIERS_VAL_V
12.1.1
-
VIEW: APPS.FV_INVOICE_DTL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FV.FV_INVOICE_DTL_V, object_name:FV_INVOICE_DTL_V, status:VALID,
-
VIEW: APPS.PO_SUPPLIERS_VAL_V
12.1.1
-
VIEW: APPS.RCV_SUPPLIERS_VAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_SUPPLIERS_VAL_V, object_name:RCV_SUPPLIERS_VAL_V, status:VALID,
-
VIEW: APPS.RCV_SUPPLIERS_VAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_SUPPLIERS_VAL_V, object_name:RCV_SUPPLIERS_VAL_V, status:VALID,
-
VIEW: APPS.FV_INVOICE_MASTER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FV.FV_INVOICE_MASTER_V, object_name:FV_INVOICE_MASTER_V, status:VALID,
-
VIEW: APPS.PO_SUPPLIERS_VAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_SUPPLIERS_VAL_V, object_name:PO_SUPPLIERS_VAL_V, status:VALID,
-
VIEW: APPS.FV_INVOICE_MASTER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FV.FV_INVOICE_MASTER_V, object_name:FV_INVOICE_MASTER_V, status:VALID,
-
View: RCV_SOURCES_BOTH_VAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_SOURCES_BOTH_VAL_V, object_name:RCV_SOURCES_BOTH_VAL_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_SOURCES_BOTH_VAL_V ,
-
View: FV_INVOICE_DTL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FV.FV_INVOICE_DTL_V, object_name:FV_INVOICE_DTL_V, status:VALID, product: FV - Federal Financials , description: The View is used to retrieve Invoice details in the form 'Document Cross-Reference' , implementation_dba_data: APPS.FV_INVOICE_DTL_V ,
-
VIEW: APPS.FV_INVOICE_DTL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FV.FV_INVOICE_DTL_V, object_name:FV_INVOICE_DTL_V, status:VALID,
-
VIEW: APPS.PO_SUPPLIERS_VAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_SUPPLIERS_VAL_V, object_name:PO_SUPPLIERS_VAL_V, status:VALID,
-
View: RCV_SOURCES_BOTH_VAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_SOURCES_BOTH_VAL_V, object_name:RCV_SOURCES_BOTH_VAL_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_SOURCES_BOTH_VAL_V ,
-
View: FV_INVOICE_MASTER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FV.FV_INVOICE_MASTER_V, object_name:FV_INVOICE_MASTER_V, status:VALID, product: FV - Federal Financials , description: The View is used to retrieve invoice header details in the form 'Document Cross-Reference' , implementation_dba_data: APPS.FV_INVOICE_MASTER_V ,
-
View: FV_INVOICE_MASTER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FV.FV_INVOICE_MASTER_V, object_name:FV_INVOICE_MASTER_V, status:VALID, product: FV - Federal Financials , description: The View is used to retrieve invoice header details in the form 'Document Cross-Reference' , implementation_dba_data: APPS.FV_INVOICE_MASTER_V ,
-
View: FV_INVOICE_DTL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FV.FV_INVOICE_DTL_V, object_name:FV_INVOICE_DTL_V, status:VALID, product: FV - Federal Financials , description: The View is used to retrieve Invoice details in the form 'Document Cross-Reference' , implementation_dba_data: APPS.FV_INVOICE_DTL_V ,
-
PACKAGE BODY: APPS.IGI_EXP_HOLD
12.1.1
-
PACKAGE BODY: APPS.IGI_EXP_HOLD
12.2.2
-
APPS.AP_APPROVAL_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGI_APPROVAL_PKG
12.1.1
-
PACKAGE BODY: APPS.IGI_APPROVAL_PKG
12.2.2
-
APPS.AP_APPROVAL_PKG SQL Statements
12.2.2
-
APPS.AP_APPROVAL_PKG dependencies on AP_HOLDS_ALL
12.1.1
-
APPS.AP_APPROVAL_PKG dependencies on AP_HOLDS_ALL
12.2.2
-
PACKAGE BODY: APPS.POS_AP_INVOICES_PKG
12.1.1
-
APPS.AP_APPROVAL_PKG dependencies on AP_HOLDS
12.2.2
-
PACKAGE BODY: APPS.POS_AP_INVOICES_PKG
12.2.2
-
APPS.AP_APPROVAL_PKG dependencies on AP_HOLDS
12.1.1
-
PACKAGE BODY: APPS.AP_APPROVAL_PKG
12.1.1
-
PACKAGE BODY: APPS.AP_APPROVAL_PKG
12.2.2
-
eTRM - FV Tables and Views
12.1.1
description: Temporary table populated during the Year End Closing process ,
-
eTRM - FV Tables and Views
12.2.2
description: Temporary table populated during the Year End Closing process ,
-
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 ,