Search Results unit_ofr_waitlist_priority_id
Overview
IGS_PS_UOFR_WLST_PRF_V is a view belonging to the IGS (Student System) product family in Oracle E-Business Suite 12.1.1 and 12.2.2. Its ETRM title and description classify it as obsolete: the metadata references a case and seed document, PS201_Enhancments_Nov03_PS_3045069_CS_DP2.doc, and explicitly states that the object is not implemented in the documented database. The view is associated with the waitlist preference feature of the unit offering (Unit of Offer) processing area of Oracle Student System.
The view presents waitlist preference records for unit offerings, resolving the generic PREFERENCE_CODE stored on the preference table into a human-readable DESCRIPTION value. Because the description source differs according to the nature of the preference — a party (person) or a course version — the view is built as a three-branch UNION. It therefore serves as a reporting and integration layer that presents preference data in a consistent, descriptive form, keyed by UNIT_OFR_WAITLIST_PRIORITY_ID, the identifier that a user searching on that column would be investigating.
Underlying Base Objects
The view text references three base tables and one supporting view. The waitlist preference table IGS_PS_UOFR_WLST_PRF (aliased UWPR) supplies the driving rows. The waitlist priority table IGS_PS_UOFR_WLST_PRI (aliased UWP) is joined in every branch on UNIT_OFR_WAITLIST_PRIORITY_ID, tying each preference to its priority definition. The description source varies by branch:
IGS_OR_INST_ORG_BASE_V(aliasedOU), joined whereOU.PARTY_NUMBER = UWPR.PREFERENCE_CODE, resolving preferences that reference a party.IGS_PS_VER(aliasedUV), joined whereUV.COURSE_CD = UWPR.PREFERENCE_CODEandUV.VERSION_NUMBER = UWPR.PREFERENCE_VERSION, resolving preferences that reference a course version.- A third branch (truncated in the source document) selecting
US.TITLEasDESCRIPTION, indicating an additional unit or offering title source.
The ETRM metadata documents no referenced base objects separately, so the view text itself is the authoritative definition. Note that because the branches use UNION rather than UNION ALL, duplicate rows are eliminated across the branches.
Key Columns
ROW_ID— theROWIDof the underlyingIGS_PS_UOFR_WLST_PRFrow, exposing row-level identity for the base table.UNIT_OFR_WAITLIST_PREF_ID— primary key of the waitlist preference record.UNIT_OFR_WAITLIST_PRIORITY_ID— foreign key to the waitlist priority; the column referenced in the search that prompted this summary, and the join key toIGS_PS_UOFR_WLST_PRI.PREFERENCE_ORDER— sequence in which preferences are applied.PREFERENCE_CODEandPREFERENCE_VERSION— the raw preference identifier and its version, resolved against parties or course versions depending on the record type.DESCRIPTION— the resolved party name, course title, or offering title.- Audit columns —
CREATED_BY,CREATION_DATE,LAST_UPDATED_BY,LAST_UPDATE_DATE, andLAST_UPDATE_LOGIN.
Common Use Cases and Queries
The view supports reporting on waitlist preferences associated with a given unit offering priority, and on the descriptive identity of the preference target. A typical query retrieves all preferences for a specific priority:
SELECT unit_ofr_waitlist_pref_id,
preference_order,
preference_code,
preference_version,
description
FROM igs_ps_uofer_wlst_prf_v
WHERE unit_ofr_waitlist_priority_id = :priority_id
ORDER BY preference_order;
A second scenario joins the view back to the priority table to report priority definitions alongside their resolved preferences. Because the object is documented as obsolete and not implemented, DBAs should verify its presence (e.g., via ALL_VIEWS) before relying on it in customizations, and should treat any dependency on it as a migration risk during upgrades between 12.1.1 and 12.2.2.
-
View: IGS_PS_UOFR_WLST_PRF_V
12.2.2
product: IGS - Student System (Obsolete) , description: Case and Seed document: PS201_Enhancments_Nov03_PS_3045069_CS_DP2.doc - Obsolete , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PS_UOFR_WLST_PRF_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UOFR_WLST_PRF_V, object_name:IGS_PS_UOFR_WLST_PRF_V, status:VALID, product: IGS - Student System , description: Case and Seed document: PS201_Enhancments_Nov03_PS_3045069_CS_DP2.doc - Obsolete , implementation_dba_data: APPS.IGS_PS_UOFR_WLST_PRF_V ,
-
VIEW: APPS.IGS_PS_UOFR_WLST_PRF_V
12.1.1
-
TABLE: IGS.IGS_PS_UOFR_WLST_PRF
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_UOFR_WLST_PRF, object_name:IGS_PS_UOFR_WLST_PRF, status:VALID,
-
VIEW: APPS.IGS_PS_UOFR_WLST_PRF_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UOFR_WLST_PRF_V, object_name:IGS_PS_UOFR_WLST_PRF_V, status:VALID,
-
View: IGS_PS_UOFR_WLST_PRI_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UOFR_WLST_PRI_V, object_name:IGS_PS_UOFR_WLST_PRI_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_UOFR_WLST_PRI_V ,
-
View: IGS_PS_UOFR_WLST_PRI_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
TABLE: IGS.IGS_PS_UOFR_WLST_PRI
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_UOFR_WLST_PRI, object_name:IGS_PS_UOFR_WLST_PRI, status:VALID,
-
VIEW: APPS.IGS_PS_UOFR_WLST_PRI_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UOFR_WLST_PRI_V, object_name:IGS_PS_UOFR_WLST_PRI_V, status:VALID,
-
VIEW: APPS.IGS_PS_UOFR_WLST_PRI_V
12.1.1
-
APPS.IGS_PS_UOFR_WLST_PRF_PKG SQL Statements
12.1.1
-
APPS.IGS_PS_UOFR_WLST_PRI_PKG SQL Statements
12.1.1
-
Table: IGS_PS_UOFR_WLST_PRI
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_UOFR_WLST_PRI, object_name:IGS_PS_UOFR_WLST_PRI, status:VALID, product: IGS - Student System , description: To capture the Waitlist Priorities for a Unit Offering Pattern , implementation_dba_data: IGS.IGS_PS_UOFR_WLST_PRI ,
-
APPS.IGS_EN_WLST_GEN_PROC SQL Statements
12.1.1
-
Table: IGS_PS_UOFR_WLST_PRI
12.2.2
product: IGS - Student System (Obsolete) , description: To capture the Waitlist Priorities for a Unit Offering Pattern , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGS_PS_UOFR_WLST_PRF_PKG
12.1.1
-
PACKAGE BODY: APPS.IGS_PS_UOFR_WLST_PRI_PKG
12.1.1
-
PACKAGE BODY: APPS.IGS_EN_WLST_GEN_PROC
12.1.1
-
APPS.IGS_EN_WLST_GEN_PROC dependencies on IGS_PS_UOFR_WLST_PRF
12.1.1
-
APPS.IGS_EN_WLST_GEN_PROC dependencies on IGS_PS_UOFR_WLST_PRI
12.1.1
-
APPS.IGS_PS_GEN_008 dependencies on IGS_PS_UOFR_WLST_PRF
12.1.1
-
APPS.IGS_PS_UOFR_WLST_PRF_PKG dependencies on IGS_PS_UOFR_WLST_PRF
12.1.1
-
APPS.IGS_PS_UOFR_WLST_PRI_PKG dependencies on IGS_PS_UOFR_WLST_PRI
12.1.1
-
APPS.IGS_PS_UOFR_WLST_PRF_PKG dependencies on IGS_PS_UOFR_WLST_PRF_S
12.1.1
-
APPS.IGS_PS_GEN_008 SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_PS_GEN_008
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'. ,