Search Results catalog_cal_desc
Overview
The view IGS_DA_REQ_WIF_V belongs to the Oracle EBS IGS — Student System product family, which is documented in the ETRM as obsolete in release 12.1.1 and 12.2.2. The view presents a denormalized, reporting-friendly projection over Degree Audit What-if requests. A what-if request allows an institution to model the effect of a hypothetical change — a different catalog year, program, major, minor, or track — against a student's academic record without committing that change to the live degree audit. The view collapses the raw request row and its associated program version and catalog instance into a single rectangular result set that includes human-readable titles and descriptions, making it suitable for concurrent-program extracts, OBIEE/XML Publisher reporting, and integration feeds. It is exposed as a read-only dictionary-style object; the ETRM entry records "Not implemented in this database" and documents no owner or referenced base objects, indicating the view was delivered by the product but is not present in every installation.
Underlying Base Objects
The view text joins three base tables:
- IGS_DA_REQ_WIF DRW — the driving table of Degree Audit what-if requests; every selected column originates from this row or from its joins.
- IGS_PS_VER PV — the program (course) version, joined on
DRW.PROGRAM_CODE = PV.COURSE_CD. - IGS_CA_INST CI — the calendar instance representing the catalog year, joined on both
CAL_TYPEandSEQUENCE_NUMBER.
The IGS_PS_VER join is deliberately constrained: the correlated subquery selects the version whose COURSE_STATUS matches a value flagged S_COURSE_STATUS = 'ACTIVE' in IGS_PS_STAT, limited by ROWNUM < 2. This yields at most one active version per program, which is what gives the view its one-row-per-request cardinality. The view also calls IGS_GE_GEN_004.GET_UNIT_SET_TITLE six to nine times to resolve unit set codes into descriptive titles for the major, minor, and track positions.
Key Columns
ROW_ID— the ROWID of the underlyingIGS_DA_REQ_WIFrow, usable for direct updates or drill-back.BATCH_ID,WIF_ID— identifiers for the submission batch and the individual what-if request.PROGRAM_CODEandPROGRAM_TITLE— the requested program and its version title fromIGS_PS_VER.CATALOG_CAL_TYPE,CATALOG_CI_SEQ_NUM— the composite key to the catalog calendar instance. catalog_ci_seq_num is the sequence number of the catalog instance, and together with the calendar type it identifies the catalog year under which the what-if is evaluated.CATALOG_CAL_DESC,CATALOG_CAL_ALT_CODE— the calendar instance description and alternate code fromIGS_CA_INST.MAJOR_UNIT_SET_CD1..3/MAJOR_UNIT_SET_TITLE1..3, and the equivalent MINOR and TRACK pairs — codes and resolved titles for the hypothetical major, minor, and track selections.CREATION_DATE,CREATED_BY,LAST_UPDATE_DATE,LAST_UPDATED_BY,LAST_UPDATE_LOGIN— standard EBS WHO columns for auditing and incremental extraction.
Common Use Cases and Queries
The view is typically used to report or extract what-if scenarios for a program and catalog year. A filtered query by batch is the most common access path:
SELECT WIF_ID, PROGRAM_CODE, PROGRAM_TITLE, CATALOG_CI_SEQ_NUM, MAJOR_UNIT_SET_TITLE1 FROM IGS_DA_REQ_WIF_V WHERE BATCH_ID = :p_batch_id ORDER BY WIF_ID;SELECT WIF_ID, CATALOG_CAL_TYPE, CATALOG_CI_SEQ_NUM, CATALOG_CAL_DESC FROM IGS_DA_REQ_WIF_V WHERE PROGRAM_CODE = :p_program;- Incremental CDC extract:
SELECT ROW_ID, WIF_ID, PROGRAM_CODE, CATALOG_CI_SEQ_NUM, LAST_UPDATE_DATE FROM IGS_DA_REQ_WIF_V WHERE LAST_UPDATE_DATE >= :p_since;
Because ROW_ID is exposed, the view can also support correction workflows that locate the base row before updating IGS_DA_REQ_WIF. Note that the repeated GET_UNIT_SET_TITLE calls impose per-row PL/SQL overhead; for high-volume extracts, joining directly to the unit set tables is preferable.
-
View: IGS_DA_REQ_WIF_V
12.2.2
product: IGS - Student System (Obsolete) , description: View over Degree Audit What-if Request , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_DA_REQ_WIF_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_DA_REQ_WIF_V, object_name:IGS_DA_REQ_WIF_V, status:VALID,
-
View: IGS_DA_REQ_WIF_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_DA_REQ_WIF_V, object_name:IGS_DA_REQ_WIF_V, status:VALID, product: IGS - Student System , description: View over Degree Audit What-if Request , implementation_dba_data: APPS.IGS_DA_REQ_WIF_V ,
-
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'. ,