Search Results org_unit_wlst_id
Overview
The IGS_EN_OR_UNIT_WLST_PRI_V view is a read-only database object owned by the APPS schema within the Oracle E-Business Suite (IGS – Student System product family). It exposes the priority rules applied to organizational unit wait lists, capturing the ordered criteria used when the system allots a unit to students who have been waitlisted. The view combines transactional wait-list priority rows with their corresponding lookup display meanings, so consumers receive both the stored priority value and its human-readable description in a single rowset.
This object is marked VALID in the ETRM (E-Business Suite Technical Reference Manual) and is available in both 12.1.1 and 12.2.2 releases. Because it is a view rather than a base table, it carries no independent storage and is intended for querying and reporting, not for direct DML. It is typically referenced by wait-list allotment logic and by reporting layers that need to present priority sequencing without joining to the lookup framework separately.
Underlying Base Objects
The view is defined over two sources according to the documented view text:
- IGS_EN_ORUN_WLST_PRI (alias UWP) – the base table holding the persisted priority records for organizational unit wait lists. All key surrogate identifiers, priority ordering, and audit columns originate here.
- IGS_LOOKUPS_VIEW (alias LV) – a lookup view supplying the display meaning for the priority value.
The join predicate restricts the lookup view to LV.LOOKUP_TYPE = 'UNIT_WAITLIST' and matches LV.LOOKUP_CODE = UWP.PRIORITY_VALUE. This means the view returns only rows whose priority value has a corresponding active lookup code of type UNIT_WAITLIST. No other base objects are documented in the ETRM metadata.
Key Columns
- ROW_ID – the base table ROWID, useful for identifying the physical row.
- ORG_UNIT_WLST_PRI_ID – primary surrogate key of the priority record.
- ORG_UNIT_WLST_ID – foreign key to the parent organizational unit wait-list record; this is the column most commonly searched using the term org_unit_wlst_id, and it links a priority rule back to its owning wait list.
- PRIORITY_NUMBER – numeric sequence indicating the order in which the priority is evaluated.
- PRIORITY_VALUE – the coded value compared against the UNIT_WAITLIST lookup.
- DSP_PRIORITY_MEANING – the lookup meaning, i.e. the display-friendly description of the priority.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN – standard EBS audit columns reflecting who created and last modified the record and when.
Common Use Cases and Queries
The view is used to drive wait-list allotment sequencing and to surface priority configurations in reporting and integration layers. A typical retrieval filters by the parent wait list and orders by priority number:
SELECT org_unit_wlst_id, priority_number, priority_value, dsp_priority_meaning
FROM apps.igs_en_or_unit_wlst_pri_v
WHERE org_unit_wlst_id = :p_wlst_id
ORDER BY priority_number;
Analysts also use it to list all configured priority values for a set of wait lists, or to audit creations and updates within a date range by querying the audit columns. Because it resolves the lookup meaning inline, it is convenient for concurrent programs, BI Publisher data templates, and OAF/ADF-based inquiry pages that must display priority values in business language rather than as raw codes.
-
View: IGS_EN_OR_UNIT_WLST_PRI_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_OR_UNIT_WLST_PRI_V, object_name:IGS_EN_OR_UNIT_WLST_PRI_V, status:VALID, product: IGS - Student System , description: View incorporating wait list priorities that have to be considered in allotting a unit to waitlisted students. , implementation_dba_data: APPS.IGS_EN_OR_UNIT_WLST_PRI_V ,
-
View: IGS_EN_OR_UNIT_WLST
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_OR_UNIT_WLST, object_name:IGS_EN_OR_UNIT_WLST, status:VALID, product: IGS - Student System , description: This view describes the various organization unit wait list options. , implementation_dba_data: APPS.IGS_EN_OR_UNIT_WLST ,
-
VIEW: APPS.IGS_EN_OR_UNIT_WLST_PRI_V
12.1.1
-
View: IGS_EN_OR_UNIT_WLST_PRI_V
12.2.2
product: IGS - Student System (Obsolete) , description: View incorporating wait list priorities that have to be considered in allotting a unit to waitlisted students. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_EN_OR_UNIT_WLST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_OR_UNIT_WLST_V, object_name:IGS_EN_OR_UNIT_WLST_V, status:VALID, product: IGS - Student System , description: This view incorporates the unit wait list priorities and unit wait list preferences. , implementation_dba_data: APPS.IGS_EN_OR_UNIT_WLST_V ,
-
TABLE: IGS.IGS_EN_OR_UNIT_WLST_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_EN_OR_UNIT_WLST_ALL, object_name:IGS_EN_OR_UNIT_WLST_ALL, status:VALID,
-
View: IGS_EN_OR_UNIT_WLST_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view incorporates the unit wait list priorities and unit wait list preferences. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_EN_OR_UNIT_WLST_V
12.1.1
-
View: IGS_EN_OR_UNIT_WLST
12.2.2
product: IGS - Student System (Obsolete) , description: This view describes the various organization unit wait list options. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_EN_OR_UNIT_WLST
12.1.1
-
Table: IGS_EN_OR_UNIT_WLST_ALL
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes the fields required to set organization unit waitlist. , implementation_dba_data: Not implemented in this database ,
-
TABLE: IGS.IGS_EN_ORUN_WLST_PRI
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_EN_ORUN_WLST_PRI, object_name:IGS_EN_ORUN_WLST_PRI, status:VALID,
-
Table: IGS_EN_OR_UNIT_WLST_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_EN_OR_UNIT_WLST_ALL, object_name:IGS_EN_OR_UNIT_WLST_ALL, status:VALID, product: IGS - Student System , description: This entity describes the fields required to set organization unit waitlist. , implementation_dba_data: IGS.IGS_EN_OR_UNIT_WLST_ALL ,
-
VIEW: APPS.IGS_EN_OR_UNIT_WLST_PRI_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_OR_UNIT_WLST_PRI_V, object_name:IGS_EN_OR_UNIT_WLST_PRI_V, status:VALID,
-
APPS.IGS_EN_ORUN_WLST_PRI_PKG SQL Statements
12.1.1
-
APPS.IGS_EN_OR_UNIT_WLST_PKG SQL Statements
12.1.1
-
VIEW: APPS.IGS_EN_OR_UNIT_WLST
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_OR_UNIT_WLST, object_name:IGS_EN_OR_UNIT_WLST, status:VALID,
-
VIEW: APPS.IGS_EN_OR_UNIT_WLST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_OR_UNIT_WLST_V, object_name:IGS_EN_OR_UNIT_WLST_V, status:VALID,
-
PACKAGE BODY: APPS.IGS_EN_ORUN_WLST_PRI_PKG
12.1.1
-
PACKAGE BODY: APPS.IGS_EN_OR_UNIT_WLST_PKG
12.1.1
-
APPS.IGS_EN_ORUN_WLST_PRI_PKG dependencies on IGS_EN_ORUN_WLST_PRI
12.1.1
-
APPS.IGS_EN_OR_UNIT_WLST_PKG dependencies on IGS_EN_OR_UNIT_WLST_ALL
12.1.1
-
APPS.IGS_EN_OR_UNIT_WLST_PKG dependencies on IGS_GE_GEN_003
12.1.1
-
eTRM - IGS Tables and Views
12.1.1
description: Holds applicant whose records are wrongly available . It is recommended that such applicant records are deleted from the system . It synchronizes with UCAS view 'ivStarW'. ,
-
eTRM - IGS Tables and Views
12.1.1
description: Holds applicant whose records are wrongly available . It is recommended that such applicant records are deleted from the system . It synchronizes with UCAS view 'ivStarW'. ,