Search Results resp_org_unit_code
Overview
The IGSFV_HIGH_EDU_PRG_GROUPS view is a read-only reporting object owned by the APPS schema within the Oracle E-Business Suite Student System (IGS) product family. It exposes groupings of academic programs — referred to in the underlying data model as course groups — that are used for a variety of functional purposes across the student information system. Program groups are commonly leveraged to organize related programs for admissions processing, curriculum planning, enrollment rules, fee assessment, and self-service catalog presentation.
The view is defined as a full view (WITH READ ONLY), meaning it is intended strictly for query and reporting access. No DML operations may be performed directly against it. Its primary role is to provide a denormalized, human-readable representation of program group data, joining internal code values to their descriptive counterparts so that reports, concurrent programs, and integration extracts can present meaningful labels rather than raw identifier codes. This makes it a convenient single-source object for reporting tools such as Oracle Reports, BI Publisher, and OBIEE, as well as for inbound SQL queries from external systems.
Underlying Base Objects
The view is defined over three base objects joined by the following relationships:
- IGS_PS_GRP_ALL (aliased GRA) — the primary driving table containing the program group records, including group code, description, responsible organizational unit, group type, and the closed indicator.
- IGS_PS_GRP_TYPE (aliased GRT) — joined on COURSE_GROUP_TYPE to supply the descriptive text for each program group type.
- HZ_PARTIES (aliased PA) — outer-joined on RESPONSIBLE_ORG_UNIT_CD = PARTY_NUMBER, constrained to active parties (STATUS = 'A'), to resolve the responsible organizational unit into a party name.
The join to HZ_PARTIES is an outer join, meaning program group rows will still be returned even when no matching active party exists for the responsible organizational unit. The join predicates are applied within the WHERE clause using Oracle's traditional outer-join syntax, consistent with 11i-era coding conventions carried forward into EBS 12.1.1 and 12.2.2.
Key Columns
- PROGRAM_GROUP_CODE — the unique code identifying the program group (sourced from COURSE_GROUP_CD).
- PROGRAM_GROUP_DESCRIPTION — the descriptive name of the program group. This is the column most commonly targeted by users searching for "program_group_description."
- RESP_ORG_UNIT_CODE / RESP_ORG_UNIT_START_DATE — the responsible organizational unit code and its effective start date.
- PROGRAM_GROUP_TYPE — the type code classifying the grouping.
- PROGRAM_CLOSED_INDICATOR — flag indicating whether the program group has been closed.
- PROGRAM_GROUP_TYPE_DESCRIPTION — the decoded description of the group type.
- RESP_ORG_UNIT_DESCRIPTION — the party name of the responsible organizational unit.
- Audit columns — CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE.
Common Use Cases and Queries
Typical use cases include listing available program groups for reporting, validating group membership prior to admissions or enrollment processing, and driving self-service catalog displays.
Retrieve all active (non-closed) program groups:
SELECT program_group_code, program_group_description, program_group_type_description FROM igsfv_high_edu_prg_groups WHERE program_closed_indicator = 'N' ORDER BY program_group_description;
Locate a group by its description:
SELECT program_group_code, program_group_description FROM igsfv_high_edu_prg_groups WHERE UPPER(program_group_description) LIKE '%UNDERGRAD%';
Because the view is read-only and drives off IGS_PS_GRP_ALL, it should be treated as a reporting convenience object rather than a transactional source.
-
View: IGSFV_HIGH_EDU_PRG_GROUPS
12.2.2
product: IGS - Student System (Obsolete) , description: This is a full 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 ,
-
View: IGSBV_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: 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 ,
-
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: IGSBV_HIGH_ED_PROG_VERSIONS
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes Program Versions including information about the intermission, financial aid, supplemental exams , minimum and maximum credit points. , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_HIGH_ED_PROG_VERSIONS
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes Program Versions including information about the intermission, financial aid, supplemental exams , minimum and maximum credit points. , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_ADVISING_GROUPS
12.2.2
product: IGS - Student System (Obsolete) , description: Stores advising group definition , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_ADVISING_GROUPS
12.2.2
product: IGS - Student System (Obsolete) , description: Stores advising group definition , implementation_dba_data: Not implemented in this database ,