Search Results current_inst
Overview
IGSBV_PERSON_EDUCATION_EXTS is an Oracle E-Business Suite read-only view owned by the APPS schema, delivered as part of the Oracle Student System / Student Records (IGS) product family. Its name indicates its purpose: it exposes person-level education and academic history attributes that extend the core person record. The "BV" segment in the object name denotes a business view, and the "_EXTS" suffix signals that the view presents an extended, denormalized projection of education data intended for external consumption.
The view is defined as a straight projection over a single underlying table, IGS_AD_HZ_ACAD_HIST, and is declared WITH READ ONLY. Because it is read-only, it serves strictly as a reporting and integration surface. It does not support DML and should not be used as a staging target. In the context of Oracle EBS 12.1.1 and 12.2.2, the view is typically consumed by concurrent programs, Oracle Reports, BI Publisher data templates, and interface programs that need academic history information joined to the HZ (TCA) party model without navigating the full base table structure.
The user's search term "current_inst" maps directly to the first column of the view. The base column CURRENT_INST is aliased in the view to CURRENT_INSTITUTION, so queries referencing CURRENT_INSTITUTION return the current institution affiliation associated with the academic history record.
Underlying Base Objects
Per the documented view text, the sole referenced base object is IGS_AD_HZ_ACAD_HIST. The view performs no joins, unions, or aggregations; it is a column-renaming projection that exposes a curated subset of columns from that table with more descriptive aliases. The ETRM metadata records no additional base objects, and the FROM clause confirms a single-table definition terminated by WITH READ ONLY.
Because the view resolves to one table, its performance characteristics track those of IGS_AD_HZ_ACAD_HIST. Predicates on the identifier columns HZ_ACAD_HIST_ID and EDUCATION_ID drive the most efficient access paths. The relationship to the TCA party model is expressed through HZ_ACAD_HIST_ID, which links the academic history row back to the corresponding person or party record.
Key Columns
- CURRENT_INSTITUTION (base: CURRENT_INST) — the current institution for the education record; the target of the user's "current_inst" search.
- PROGRAM_TYPE_ATTEMPTED — the program type the person attempted at the institution.
- NOTES (base: COMMENTS) — free-text comments attached to the academic history.
- PLANNED_COMPLETION_DATE — anticipated completion date for the program.
- Calculated metrics — RECALC_TOTAL_CP_ATTEMPTED, RECALC_TOTAL_CP_EARNED, RECALC_TOTAL_UNIT_GRADE_POINT, RECALC_TOT_GPA_UTS_ATTEMPTED, and RECALC_INSTITUTION_GPA expose system-recalculated credit points, earned credit, unit grade points, attempted GPA units, and institutional GPA.
- Self-reported metrics — SELFREP_TOTAL_CP_ATTEMPTED, SELFREP_TOTAL_CP_EARNED, SELFREP_TOTAL_UNIT_GRADE_POINT, SELFREP_TOT_GPA_UTS_ATTEMPTED, SELFREP_INSTITUTION_GPA, SELFREP_WEIGHTED_GPA_INDICATOR, SELFREP_RANK_IN_CLASS, SELFREP_WEIGHED_RANK_INDICATOR, and SELFREP_CLASS_SIZE expose applicant-entered values that may differ from recalculated figures.
- TRANSCRIPT_REQUIRED_INDICATOR (base: TRANSCRIPT_REQUIRED) — flags whether a transcript is required.
- Identifiers and audit columns — HZ_ACAD_HIST_ID, EDUCATION_ID, RECALC_GRADING_SCALE_ID, SELFREP_GRADING_SCALE_ID, plus CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, and LAST_UPDATE_DATE.
Common Use Cases and Queries
Typical uses include admissions review, where recalculated versus self-reported GPA and credit values are compared, and integration extracts that feed external student information systems.
Retrieve all education rows for a person by academic history identifier:
SELECT CURRENT_INSTITUTION, EDUCATION_ID, RECALC_INSTITUTION_GPA, SELFREP_INSTITUTION_GPA FROM APPS.IGSBV_PERSON_EDUCATION_EXTS WHERE HZ_ACAD_HIST_ID = :p_id;
Identify records where the self-reported GPA differs from the recalculated GPA:
SELECT HZ_ACAD_HIST_ID, CURRENT_INSTITUTION, RECALC_INSTITUTION_GPA, SELFREP_INSTITUTION_GPA FROM APPS.IGSBV_PERSON_EDUCATION_EXTS WHERE NVL(RECALC_INSTITUTION_GPA,0) <> NVL(SELFREP_INSTITUTION_GPA,0);
List institutions requiring transcripts:
SELECT CURRENT_INSTITUTION, PROGRAM_TYPE_ATTEMPTED, PLANNED_COMPLETION_DATE FROM APPS.IGSBV_PERSON_EDUCATION_EXTS WHERE TRANSCRIPT_REQUIRED_INDICATOR = 'Y';
Because the view is READ ONLY and defined over a single table, these queries are safe for reporting workloads and can be granted to read-only reporting responsibilities without risk of unintended data modification.
-
VIEW: APPS.IGSBV_PERSON_EDUCATION_EXTS
12.1.1
-
TABLE: IGS.IGS_RC_IS_ACAD_OLD
12.1.1
owner:IGS, object_type:TABLE, object_name:IGS_RC_IS_ACAD_OLD, status:VALID,
-
View: IGS_AD_RELACAD_INT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_RELACAD_INT, object_name:IGS_AD_RELACAD_INT, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_AD_RELACAD_INT ,
-
View: IGS_AD_RELACAD_INT
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_AD_RELACAD_INT
12.1.1
-
View: IGS_AD_ACADHIS_INT
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_PERSON_EDUCATION_EXTS
12.2.2
product: IGS - Student System (Obsolete) , description: Obsolete , implementation_dba_data: Not implemented in this database ,
-
TABLE: IGS.IGR_IS_ACAD
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGR_IS_ACAD, object_name:IGR_IS_ACAD, status:VALID,
-
View: IGS_AD_ACADHIS_INT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_ACADHIS_INT, object_name:IGS_AD_ACADHIS_INT, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_AD_ACADHIS_INT ,
-
VIEW: APPS.IGS_AD_RELACAD_INT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_RELACAD_INT, object_name:IGS_AD_RELACAD_INT, status:VALID,
-
VIEW: APPS.IGS_AD_ACADHIS_INT
12.1.1
-
TABLE: IGS.IGS_SS_ACAD_HISTORY
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_SS_ACAD_HISTORY, object_name:IGS_SS_ACAD_HISTORY, status:VALID,
-
TABLE: IGS.IGS_AD_ACADHIS_INT_ALL_OLD
12.1.1
owner:IGS, object_type:TABLE, object_name:IGS_AD_ACADHIS_INT_ALL_OLD, status:VALID,
-
Lookup Type: PERSON_ACADEMIC_INFO
12.1.1
product: IGS - Student System , meaning: Academic Information , description: Academic Information ,
-
TABLE: IGS.IGS_SS_INQ_ACAD
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_SS_INQ_ACAD, object_name:IGS_SS_INQ_ACAD, status:VALID,
-
Lookup Type: PERSON_ACADEMIC_INFO
12.2.2
product: IGS - Student System (Obsolete) , meaning: Academic Information , description: Academic Information ,
-
View: IGSBV_PERSON_EDUCATION_EXTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_PERSON_EDUCATION_EXTS, object_name:IGSBV_PERSON_EDUCATION_EXTS, status:VALID, product: IGS - Student System , description: Obsolete , implementation_dba_data: APPS.IGSBV_PERSON_EDUCATION_EXTS ,
-
VIEW: APPS.IGS_AD_ACADHIS_INT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_ACADHIS_INT, object_name:IGS_AD_ACADHIS_INT, status:VALID,
-
TABLE: IGS.IGS_AD_RELACAD_INT_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_RELACAD_INT_ALL, object_name:IGS_AD_RELACAD_INT_ALL, status:VALID,
-
VIEW: APPS.IGS_AD_ACAD_HISTORY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_ACAD_HISTORY_V, object_name:IGS_AD_ACAD_HISTORY_V, status:VALID,
-
TABLE: IGS.IGS_AD_HZ_ACAD_HIST
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_HZ_ACAD_HIST, object_name:IGS_AD_HZ_ACAD_HIST, status:VALID,
-
View: IGS_AD_ACAD_HISTORY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_ACAD_HISTORY_V, object_name:IGS_AD_ACAD_HISTORY_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_AD_ACAD_HISTORY_V ,
-
TABLE: IGS.IGS_AD_ACADHIS_INT_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_ACADHIS_INT_ALL, object_name:IGS_AD_ACADHIS_INT_ALL, status:VALID,
-
View: IGS_AD_ACAD_HISTORY_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_AD_HZ_ACAD_HIST_PKG SQL Statements
12.1.1
-
APPS.IGR_IMP_001 SQL Statements
12.1.1
-
Lookup Type: CAT_ATTR_NAME
12.1.1
product: IGS - Student System , meaning: Category Attribute Name , description: Category Attribute Name ,
-
Lookup Type: CAT_ATTR_NAME
12.2.2
product: IGS - Student System (Obsolete) , meaning: Category Attribute Name , description: Category Attribute Name ,
-
APPS.IGS_AD_ACT_ASSESSMENTS_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_AD_HZ_ACAD_HIST_PKG
12.1.1
-
PACKAGE BODY: APPS.IGR_IMP_001
12.1.1
-
APPS.IGS_AD_IMP_013 SQL Statements
12.1.1
-
APPS.IGS_UC_EXP_APPLICANT_DTLS SQL Statements
12.1.1
-
APPS.IGS_HE_IMPORT_DATA SQL Statements
12.1.1
-
APPS.IGS_AD_IMP_013 dependencies on IGS_AD_ACAD_HISTORY_V
12.1.1
-
APPS.IGR_IMP_001 dependencies on IGR_IS_ACAD
12.1.1
-
APPS.IGS_UC_EXP_APPLICANT_DTLS dependencies on IGS_AD_ACADHIS_INT_ALL
12.1.1
-
APPS.IGS_HE_IMPORT_DATA dependencies on IGS_AD_ACADHIS_INT_ALL
12.1.1
-
PACKAGE BODY: APPS.IGS_AD_ACT_ASSESSMENTS_PKG
12.1.1
-
PACKAGE BODY: APPS.IGS_AD_IMP_013
12.1.1
-
PACKAGE BODY: APPS.IGS_AD_IMP_008
12.1.1
-
PACKAGE BODY: APPS.IGS_UC_EXP_APPLICANT_DTLS
12.1.1
-
PACKAGE BODY: APPS.IGS_HE_IMPORT_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'. ,