Search Results igsbv_high_edu_prg_groups
Overview
The view IGSBV_HIGH_EDU_PRG_GROUPS belongs to the IGS — Student System product family, a legacy module that Oracle classifies as obsolete. It is a base view whose declared purpose is to describe a grouping of programs used for a variety of purposes within the Student System. In Oracle EBS Release 12.1.1 and 12.2.2, this view functions as a denormalized reporting layer over the underlying program-group table, presenting friendly business names in place of the terse column names used by the base entity.
The view is most relevant to institutions that implemented the pre-12.0 higher-education student model and subsequently upgraded. Because the object is documented as not implemented in this database within the ETRM 12.2.2 metadata, it should be treated as a compatibility or historical artifact rather than an actively maintained interface. The presence of a PROGRAM_CLOSED_INDICATOR column explains why the view surfaces in searches for the term "program_closed_indicator": the identifier is an alias applied to the base column CLOSED_IND, letting report authors query a descriptively named field without knowing the underlying naming convention.
Underlying Base Objects
The view text identifies a single referenced object: the table IGS_PS_GRP_ALL, aliased as GR in the defining query. The view is defined with the WITH READ ONLY clause, so no DML can be performed against it; it is strictly a query construct.
The join is trivial — there is no join at all. Every column is projected directly from the one base table, with only column aliasing applied. The documented metadata records no additional referenced base objects, confirming that the view does not traverse to organization, calendar, or program-version entities. For institutions on R12.1.1 or 12.2.2 where the legacy IGS schema has been removed or migrated, the object will not exist; queries that reference it must be redirected to the successor tables of the Student System replacement model or removed entirely.
Key Columns
PROGRAM_GROUP_CODE— aliased fromCOURSE_GROUP_CD; the unique code identifying the program group.PROGRAM_GROUP_DESCRIPTION— aliased fromDESCRIPTION; the descriptive text for the group.RESP_ORG_UNIT_CODE— aliased fromRESPONSIBLE_ORG_UNIT_CD; the organization unit accountable for the group.RESP_ORG_UNIT_START_DATE— aliased fromRESPONSIBLE_OU_START_DT; the date from which the owning organization unit became responsible.PROGRAM_GROUP_TYPE— aliased fromCOURSE_GROUP_TYPE; classifies the purpose or category of the group.PROGRAM_CLOSED_INDICATOR— aliased fromCLOSED_IND; indicates whether the program group is closed to further use.CREATED_BY,CREATION_DATE,LAST_UPDATED_BY,LAST_UPDATE_DATE— standard Oracle EBS audit columns inherited from the base table.
Common Use Cases and Queries
Typical usage is reporting on open program groups and their owning organizations. A common filter is on the closed indicator, which is precisely the term that led to this object being located.
SELECT program_group_code,
program_group_description,
resp_org_unit_code,
program_group_type
FROM igsbv_high_edu_prg_groups
WHERE program_closed_indicator = 'N'
ORDER BY program_group_code;
A second scenario groups active programs by responsible organization unit for planning or accreditation reporting:
SELECT resp_org_unit_code,
program_group_type,
COUNT(*) group_count
FROM igsbv_high_edu_prg_groups
WHERE program_closed_indicator = 'N'
GROUP BY resp_org_unit_code, program_group_type;
Because the view is read-only and unimplemented in current ETRM environments, these queries are best used as migration references — mapping the legacy column semantics onto replacement Student System tables — rather than as production reporting statements on a live R12.1.1 or 12.2.2 instance.
-
View: IGSBV_HIGH_EDU_PRG_GROUPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_HIGH_EDU_PRG_GROUPS, object_name:IGSBV_HIGH_EDU_PRG_GROUPS, status:VALID, product: IGS - Student System , description: This is a base view, which describes a grouping of programs,which are used for a variety of purposes within the system. , implementation_dba_data: APPS.IGSBV_HIGH_EDU_PRG_GROUPS ,
-
View: IGSBV_HIGH_EDU_PRG_GROUPS
12.2.2
product: IGS - Student System (Obsolete) , description: This is a base view, which describes a grouping of programs,which are used for a variety of purposes within the system. , implementation_dba_data: Not implemented in this database ,
-
SYNONYM: APPS.IGS_PS_GRP_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_PS_GRP_ALL, status:VALID,
-
VIEW: APPS.IGSBV_HIGH_EDU_PRG_GROUPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_HIGH_EDU_PRG_GROUPS, object_name:IGSBV_HIGH_EDU_PRG_GROUPS, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 DBA Data
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'. ,