Search Results implied_fund_rate
Overview
IGS_HE_ST_PROG is a read-only view owned by the APPS schema in Oracle E-Business Suite. It belongs to the IGS (Student System / Higher Education) product family and carries FND Design Data registration IGS.IGS_HE_ST_PROG, which distinguishes it from customer-defined objects. The view presents HESA (Higher Education Statistics Agency) program-level records used for statutory returns and related regulatory reporting in the UK higher education sector.
The object is implemented as a multi-org view. In Oracle EBS, a multi-org view restricts the rows returned to those associated with the operating unit in the current session, ignoring data belonging to other operating units. This behavior is enforced through the standard _ALL / _ORG_ID partitioning pattern: the view typically selects from a base table with an ORG_ID predicate bound to the client's operating unit context via CLIENT_INFO / FND_CLIENT_INFO.
The metadata records the object as VALID in the 12.1.1 / 12.2.2 releases. The described functionality is unchanged across these releases from a reporting standpoint. The DEFAULT_AWARD column that prompted the search is a VARCHAR2(30) attribute intended to hold the default award to which a student is expected to progress on the given program/teaching combination.
Underlying Base Objects
The ETRM documentation for this version does not enumerate the referenced base tables (documented base objects: none). It is nonetheless evident from the column list that the view projects from a single HESA program staging/detail table in the IGS schema, most likely named IGS_HE_ST_PROG_ALL or similar, carrying the ORG_ID column required for the multi-org behavior. Because the view is flagged as multi-org, all query results are automatically scoped to the current operating unit; a query run without a properly initialized session may return no rows.
In higher education implementations the base table is populated from the Student System course/teaching-program setup and then extracted for HESA returns. Verify the exact base object by querying USER_VIEWS / DBA_VIEWS for the view text on the target instance before relying on the projection.
Key Columns
- HESA_ST_PROG_ID — surrogate primary key identifying the HESA program row.
- COURSE_CD / VERSION_NUMBER — key linking the record to the course and the returning version of that course.
- TEACHER_TRAIN_PROG_ID, ITT_PHASE, BILINGUAL_ITT_MARKER — teacher-training identity and phase attributes used in ITT (Initial Teacher Training) returns.
- DEFAULT_AWARD — the award a student on this program is normally expected to receive at completion; central to HESA award reporting and default-award-driven progression rules.
- TEACHING_QUAL_SOUGHT_SECTOR / SUBJ1–SUBJ3 — qualification sector and subjects pursued.
- LOCATION_OF_STUDY, OTHER_INST_PROV_TEACHING1/2 — study location and other teaching providers.
- PROGRAM_CALC, LEVEL_APPLICABLE_TO_FUNDING, FUNDABILITY, FEE_BAND — funding and fee determination attributes.
- IMPLIED_FUND_RATE, GOV_INITIATIVES_CD — funding rate and initiative codes.
- TEACH_PERIOD_START_DT / TEACH_PERIOD_END_DT — teaching period boundaries.
- EXCLUDE_FLAG — marks records excluded from the return.
- Standard WHO columns (CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN) and ROW_ID round out the structure.
Common Use Cases and Queries
The view is typically queried for HESA program returns, default-award analysis, and integration feeds exposing program attributes. Because it is multi-org, set the operating unit context before querying.
SELECT h.HESA_ST_PROG_ID, h.COURSE_CD, h.VERSION_NUMBER,
h.DEFAULT_AWARD, h.FEE_BAND, h.FUNDABILITY
FROM APPS.IGS_HE_ST_PROG h
WHERE h.EXCLUDE_FLAG IS NULL
AND h.COURSE_CD = :p_course_cd;
To inspect default-award distribution for a reporting period:
SELECT h.DEFAULT_AWARD, COUNT(*)
FROM APPS.IGS_HE_ST_PROG h
WHERE h.TEACH_PERIOD_START_DT >= :p_start
AND h.EXCLUDE_FLAG IS NULL
GROUP BY h.DEFAULT_AWARD
ORDER BY 2 DESC;
Typical scenarios include reconciling published default awards against course setup, auditing fundability and fee-band assignments, and building teacher-training (ITT) extracts. Always confirm the base table projection and the ORG-scoping behavior directly against DBA_VIEWS on the release in use, as the ETRM metadata for this version documents columns thoroughly but not the underlying SQL.
-
VIEW: APPS.IGS_HE_ST_PROG
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_HE_ST_PROG, object_name:IGS_HE_ST_PROG, status:VALID,
-
VIEW: APPS.IGS_HE_ST_PRG_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_HE_ST_PRG_DTLS_V, object_name:IGS_HE_ST_PRG_DTLS_V, status:VALID,
-
View: IGS_HE_ST_PROG
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_HE_ST_PROG, object_name:IGS_HE_ST_PROG, status:VALID, product: IGS - Student System , description: Stores HESA Program details , implementation_dba_data: APPS.IGS_HE_ST_PROG ,
-
View: IGS_HE_ST_PROG
12.2.2
product: IGS - Student System (Obsolete) , description: Stores HESA Program details , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_HE_ST_SPA
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_HE_ST_SPA, object_name:IGS_HE_ST_SPA, status:VALID,
-
TABLE: IGS.IGS_HE_ST_PROG_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_HE_ST_PROG_ALL, object_name:IGS_HE_ST_PROG_ALL, status:VALID,
-
APPS.IGS_HE_SPA_LGCY_PUB SQL Statements
12.1.1
-
View: IGS_HE_ST_SPA
12.2.2
product: IGS - Student System (Obsolete) , description: Stores Student Program attempt HESA details , implementation_dba_data: Not implemented in this database ,
-
View: IGS_HE_ST_SPA
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_HE_ST_SPA, object_name:IGS_HE_ST_SPA, status:VALID, product: IGS - Student System , description: Stores Student Program attempt HESA details , implementation_dba_data: APPS.IGS_HE_ST_SPA ,
-
TABLE: IGS.IGS_HE_ST_SPA_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_HE_ST_SPA_ALL, object_name:IGS_HE_ST_SPA_ALL, status:VALID,
-
TABLE: IGS.IGS_HE_LGCY_SPA_INT
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_HE_LGCY_SPA_INT, object_name:IGS_HE_LGCY_SPA_INT, status:VALID,
-
View: IGS_HE_ST_PRG_DTLS_V
12.2.2
product: IGS - Student System (Obsolete) , description: Stores HESA Program details , implementation_dba_data: Not implemented in this database ,
-
View: IGS_HE_ST_PRG_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_HE_ST_PRG_DTLS_V, object_name:IGS_HE_ST_PRG_DTLS_V, status:VALID, product: IGS - Student System , description: Stores HESA Program details , implementation_dba_data: APPS.IGS_HE_ST_PRG_DTLS_V ,
-
VIEW: APPS.IGS_HE_ST_SPA_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_HE_ST_SPA_DTLS_V, object_name:IGS_HE_ST_SPA_DTLS_V, status:VALID,
-
APPS.IGS_HE_ST_PROG_ALL_PKG SQL Statements
12.1.1
-
PACKAGE: APPS.IGS_HE_SPA_LGCY_PUB
12.1.1
-
View: IGS_HE_ST_SPA_DTLS_V
12.2.2
product: IGS - Student System (Obsolete) , description: Student Program Attempt HESA Details , implementation_dba_data: Not implemented in this database ,
-
View: IGS_HE_ST_SPA_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_HE_ST_SPA_DTLS_V, object_name:IGS_HE_ST_SPA_DTLS_V, status:VALID, product: IGS - Student System , description: Student Program Attempt HESA Details , implementation_dba_data: APPS.IGS_HE_ST_SPA_DTLS_V ,
-
APPS.IGS_HE_ST_SPA_ALL_PKG SQL Statements
12.1.1
-
APPS.IGS_EN_HESA_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_HE_ST_PROG_ALL_PKG
12.1.1
-
PACKAGE BODY: APPS.IGS_HE_ST_SPA_ALL_PKG
12.1.1
-
APPS.IGS_HE_SPA_LGCY_PUB dependencies on IGS_HE_LGCY_SPA_INT
12.1.1
-
PACKAGE BODY: APPS.IGS_HE_SPA_LGCY_PUB
12.1.1
-
PACKAGE BODY: APPS.IGS_EN_HESA_PKG
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'. ,