Search Results po_vendors
Overview
APPS.AHL_UNIT_ALTERNATES_V is a reporting and integration view within the Oracle E-Business Suite AHL (Complex Maintenance Repair and Overhaul) product family. Its documented purpose is to retrieve alternate item instances available in Oracle Install Base for a given position (node) as defined by a Master Configuration. In other words, where a Master Configuration defines a set of valid items or positions, this view surfaces the serialized units in Install Base that can legitimately substitute or occupy that position, together with the ownership, location, and item attributes required for downstream decision-making.
The object is registered in ETRM as a VALID VIEW owned by the APPS schema and is available in both 12.1.1 and 12.2.2. It is commonly encountered in ETRM searches alongside po_vendors because one branch of its owner resolution logic queries the PO_VENDORS synonym to derive vendor numbers and vendor names for supplier-owned instances. This makes the view a convenient single source for both party-owned and vendor-owned unit information without requiring external joins.
Underlying Base Objects
The view is defined over a mixture of synonym-wrapped base tables, other views, packages, and lookups. The documented referenced objects include:
- CSI_ITEM_INSTANCES (SYNONYM) — the Install Base instance table supplying serial numbers, instance numbers, quantities, UOM, revisions, and location details.
- CSI_I_PARTIES (SYNONYM) — provides the party relationship between an instance and its owner, including PARTY_ID, PARTY_SOURCE_TABLE, and relationship identifiers.
- CSI_II_RELATIONSHIPS (SYNONYM) and AHL_MC_RELATIONSHIPS (SYNONYM) — supply the Master Configuration relationships used to map instances to configuration positions.
- AHL_ITEM_ASSOCIATIONS_B (SYNONYM) — links items to the AHL configuration model and association priority.
- PO_VENDORS (VIEW) and HZ_PARTIES (SYNONYM) — resolved through UNION ALL subqueries to return OWNER_NUMBER and OWNER_NAME regardless of whether the owner is a trading partner or a supplier.
- MTL_SYSTEM_ITEMS_KFV (SYNONYM) — supplies the concatenated item number (ITEM_NUMBER) and item description.
- CSI_LOOKUPS (VIEW), MTL_MATERIAL_STATUSES (SYNONYM), CSI_INST_EXTEND_ATTRIB_V (VIEW) — provide status meanings and extended attribute values.
- AHL_UTIL_UC_PKG, HR_GENERAL, HR_SECURITY, MO_GLOBAL (PACKAGES) — used for location code/description resolution and organizational security filtering.
- ORG_ORGANIZATION_DEFINITIONS (VIEW) and DUAL (SYNONYM).
The view therefore sits at the intersection of Install Base (CSI), Master Configuration (AHL), inventory items (MTL), and supplier/party masters (PO/HZ).
Key Columns
- CSI_ITEM_INSTANCE_ID, CSI_INSTANCE_NUMBER, CSI_OBJECT_VERSION_NUMBER — the Install Base instance identity and its optimistic-locking version.
- INVENTORY_ITEM_ID, INVENTORY_ORG_ID, UOM_CODE, QUANTITY — item and stocking details for the instance.
- OWNER_ID, OWNER_NUMBER, OWNER_NAME, PARTY_TYPE — the owning party. PARTY_TYPE decodes to 'PARTY' when sourced from HZ_PARTIES or 'VENDOR' when sourced from PO_VENDORS.
- ITEM_NUMBER, ITEM_DESCRIPTION — from MTL_SYSTEM_ITEMS_KFV.
- STATUS — the CSI instance usage meaning from CSI_LOOKUPS.
- OWNER_SITE_NUMBER, LOCATION_DESCRIPTION, CSI_LOCATION_ID, CSI_LOCATION_TYPE_CODE — resolved via AHL_UTIL_UC_PKG.
- SERIAL_NUMBER, INVENTORY_REVISION, INSTALL_DATE — instance-level identifiers and dates.
- RELATIONSHIP_ID, PRIORITY — the configuration relationship and its association priority.
Common Use Cases and Queries
Typical scenarios include identifying all valid replacement units for a configured position, verifying whether a supplier-owned unit may be substituted, and producing owner/status reports for MRO planning. A basic query to list alternates with owner resolution is:
SELECT csi_instance_number, item_number, owner_name, party_type, status FROM apps.ahl_unit_alternates_v WHERE inventory_item_id = :item_id;SELECT csi_item_instance_id, owner_number, location_description FROM apps.ahl_unit_alternates_v WHERE party_type = 'VENDOR';SELECT csi_instance_number, item_description, priority FROM apps.ahl_unit_alternates_v ORDER BY priority;
Because owner resolution depends on PARTY_SOURCE_TABLE, filtering by PARTY_TYPE is the reliable method for isolating vendor-supplied versus partner-supplied instances. As with most Install Base views, queries should be filtered by organization where possible to leverage MO_GLOBAL security processing.
-
View: AHL_UNIT_ALTERNATES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_UNIT_ALTERNATES_V, object_name:AHL_UNIT_ALTERNATES_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This view stores the query to retrieve alternate item instances available in Install Base for a position (node) as defined by Master Configuration , implementation_dba_data: APPS.AHL_UNIT_ALTERNATES_V ,
-
View: AHL_UNIT_ALTERNATES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_UNIT_ALTERNATES_V, object_name:AHL_UNIT_ALTERNATES_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This view stores the query to retrieve alternate item instances available in Install Base for a position (node) as defined by Master Configuration , implementation_dba_data: APPS.AHL_UNIT_ALTERNATES_V ,
-
Table: AHL_SUPPLIER_DOCUMENTS
12.2.2
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_SUPPLIER_DOCUMENTS, object_name:AHL_SUPPLIER_DOCUMENTS, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This table stores supplier information for documents. , implementation_dba_data: AHL.AHL_SUPPLIER_DOCUMENTS ,
-
View: AHL_HZ_PO_SUPPLIERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_HZ_PO_SUPPLIERS_V, object_name:AHL_HZ_PO_SUPPLIERS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This stores supplier information. , implementation_dba_data: APPS.AHL_HZ_PO_SUPPLIERS_V ,
-
View: AHL_HZ_PO_SUPPLIERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_HZ_PO_SUPPLIERS_V, object_name:AHL_HZ_PO_SUPPLIERS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This stores supplier information. , implementation_dba_data: APPS.AHL_HZ_PO_SUPPLIERS_V ,
-
Table: AHL_SUPPLIER_DOCUMENTS
12.1.1
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_SUPPLIER_DOCUMENTS, object_name:AHL_SUPPLIER_DOCUMENTS, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This table stores supplier information for documents. , implementation_dba_data: AHL.AHL_SUPPLIER_DOCUMENTS ,
-
Table: AHL_OSP_ORDERS_B
12.2.2
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_OSP_ORDERS_B, object_name:AHL_OSP_ORDERS_B, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This table stores the osp order header information. , implementation_dba_data: AHL.AHL_OSP_ORDERS_B ,
-
Table: AHL_OSP_ORDERS_B
12.1.1
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_OSP_ORDERS_B, object_name:AHL_OSP_ORDERS_B, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This table stores the osp order header information. , implementation_dba_data: AHL.AHL_OSP_ORDERS_B ,
-
View: AHL_OWNER_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_OWNER_DETAILS_V, object_name:AHL_OWNER_DETAILS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This view stores the query to retrieve valid owners for an Unit Configuration. , implementation_dba_data: APPS.AHL_OWNER_DETAILS_V ,
-
View: AHL_OWNER_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_OWNER_DETAILS_V, object_name:AHL_OWNER_DETAILS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This view stores the query to retrieve valid owners for an Unit Configuration. , implementation_dba_data: APPS.AHL_OWNER_DETAILS_V ,
-
View: AHL_OSP_ORDERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_OSP_ORDERS_V, object_name:AHL_OSP_ORDERS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: View to retrieve all OSP order information about an OSP order including values for keys by joining AHL_OSP_ORDERS_VL, PO_HEADERS_V, OE_ORDER_HEADERS_ALL and FND_LOOKUPS_VALUES_VL. , implementation_dba_data: APPS.AHL_OSP_ORDERS_V ,
-
View: AHL_OSP_ORDERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_OSP_ORDERS_V, object_name:AHL_OSP_ORDERS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: View to retrieve all OSP order information about an OSP order including values for keys by joining AHL_OSP_ORDERS_VL, PO_HEADERS_V, OE_ORDER_HEADERS_ALL and FND_LOOKUPS_VALUES_VL. , implementation_dba_data: APPS.AHL_OSP_ORDERS_V ,
-
View: AHL_OWNER_LOCATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_OWNER_LOCATIONS_V, object_name:AHL_OWNER_LOCATIONS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This view stores the query to retrieve valid owners for an Unit Configuration. , implementation_dba_data: APPS.AHL_OWNER_LOCATIONS_V ,
-
View: AHL_OWNER_LOCATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_OWNER_LOCATIONS_V, object_name:AHL_OWNER_LOCATIONS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This view stores the query to retrieve valid owners for an Unit Configuration. , implementation_dba_data: APPS.AHL_OWNER_LOCATIONS_V ,