Search Results unit_set_category_desc
Overview
The view IGSFV_PROG_CONCENTRATIONS belongs to the IGS — Student System product family, a module classified as obsolete in Oracle EBS 12.1.1 and 12.2.2. Despite its name, the view does not describe program concentrations in the admissions sense; it exposes the unit-set entity, defined as a logical sub-grouping of a program such as a Major, Minor, Stream, or Strand. Each unit-set captured through this view represents a structured academic grouping whose completion is typically governed by the Rules Sub-system.
The view is a reporting and integration construct rather than a transactional table. It flattens the primary unit-set record together with its status and category descriptions and the responsible organizational unit, producing a denormalized projection suitable for enquiry screens, extracts, and downstream integration. The view is declared WITH READ ONLY, confirming it is intended strictly for query access. The ETRM note stating "Not implemented in this database" indicates the view may not be present in every environment, and it should be validated against the target instance before use.
The user search term unit_set_category_desc maps directly to the UNIT_SET_CATEGORY_DESC column, which supplies the decoded category text for a unit-set.
Underlying Base Objects
Although the ETRM metadata documents no referenced base objects, the view text reveals the physical sources. The view is defined over four objects joined on their natural keys:
- IGS_EN_UNIT_SET_ALL — the driving table (aliased
UST) holding unit-set identity, version, status, category, dates, titles, and audit columns. - IGS_EN_UNIT_SET_STAT — the status lookup (aliased
USS), joined onUNIT_SET_STATUSto yield the status description. - IGS_EN_UNIT_SET_CAT — the category lookup (aliased
USC), joined onUNIT_SET_CATto yield the category description. - IGS_OR_INST_ORG_BASE_V — the institution/organization base view (aliased
HP), outer-joined onPARTY_NUMBERtoRESPONSIBLE_ORG_UNIT_CDto resolve the responsible organizational unit name.
The (+) outer-join operator on the organization view means unit-sets without a resolvable responsible organization still return, with RESP_ORG_UNIT_DESC null.
Key Columns
- UNIT_SET_CODE, VERSION_NUMBER — the composite identity of the unit-set and its version.
- UNIT_SET_STATUS, UNIT_SET_STATUS_DESC — coded and decoded status.
- UNIT_SET_CATEGORY, UNIT_SET_CATEGORY_DESC — coded and decoded category (Major, Minor, Stream, Strand); this is the target of the searched term.
- START_DATE, REVIEW_DATE, EXPIRY_DATE, END_DATE — lifecycle dates governing validity of the unit-set.
- TITLE, SHORT_TITLE, ABBREVIATION — descriptive identifiers.
- RESP_ORG_UNIT_CODE, RESP_ORG_UNIT_START_DATE, RESP_ORG_UNIT_DESC — responsible organizational unit and its effective start date.
- ADMINISTRATIVE_INDICATOR, AUTHORISATION_RQRD_INDICATOR — flags indicating administrative treatment and whether authorisation is required.
- _DF — descriptive flexfield reference token (
_DF:IGS:IGS_PS_UNIT_SET_FLEX:UST), signalling the DFF context for the unit-set. - CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE — standard audit columns.
Common Use Cases and Queries
Typical usage includes listing all unit-sets for a program, filtering by category or status, and extracting records for reporting. Because the view is read-only, it is safe for ad-hoc enquiry.
- Retrieve all unit-sets with decoded status and category:
SELECT unit_set_code, version_number, title,
unit_set_category_desc, unit_set_status_desc
FROM igsfv_prog_concentrations
WHERE TRUNC(SYSDATE) BETWEEN start_date AND NVL(end_date, SYSDATE);
- Filter by the searched category description, using the searched term column:
SELECT unit_set_code, unit_set_category_desc, resp_org_unit_desc FROM igsfv_prog_concentrations WHERE UPPER(unit_set_category_desc) LIKE '%MAJOR%';
- Identify unit-sets requiring authorisation:
SELECT unit_set_code, title, unit_set_status_desc FROM igsfv_prog_concentrations WHERE authorisation_rqrd_indicator = 'Y';
Consultants should treat this object as legacy IGS functionality; where it is not implemented, equivalent data must be sourced directly from the underlying IGS_EN_UNIT_SET_ALL and its lookups.
-
View: IGSFV_PROG_CONCENTRATIONS
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes a unit-set, being a logical sub-grouping of program. eg .Major, Minor, Stream, Strand. A unit-set is typically related to the rules which governs its completion via the Rules Sub-system. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGSFV_PROG_CONCENTRATIONS
12.1.1
-
View: IGSFV_PROG_CONCENTRATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_PROG_CONCENTRATIONS, object_name:IGSFV_PROG_CONCENTRATIONS, status:VALID, product: IGS - Student System , description: This entity describes a unit-set, being a logical sub-grouping of program. eg .Major, Minor, Stream, Strand. A unit-set is typically related to the rules which governs its completion via the Rules Sub-system. , implementation_dba_data: APPS.IGSFV_PROG_CONCENTRATIONS ,
-
View: IGSFV_CONCENTRATIONS
12.2.2
product: IGS - Student System (Obsolete) , description: This view describes a unit-set, being a logical sub-grouping of course. e.g. Major, Minor, Stream, Strand. A unit-set is typically related to the rules, which govern its completion via the Rules Sub-system. - Obsolete , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_CONCENTRATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_CONCENTRATIONS, object_name:IGSFV_CONCENTRATIONS, status:VALID, product: IGS - Student System , description: This view describes a unit-set, being a logical sub-grouping of course. e.g. Major, Minor, Stream, Strand. A unit-set is typically related to the rules, which govern its completion via the Rules Sub-system. - Obsolete , implementation_dba_data: APPS.IGSFV_CONCENTRATIONS ,
-
VIEW: APPS.IGSFV_CONCENTRATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_CONCENTRATIONS, object_name:IGSFV_CONCENTRATIONS, status:VALID,
-
VIEW: APPS.IGSFV_PROG_CONCENTRATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_PROG_CONCENTRATIONS, object_name:IGSFV_PROG_CONCENTRATIONS, status:VALID,
-
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'. ,