Search Results college_code
Overview
IGSBV_AD_ACT_ASSESSMENTS is a read-only reporting view within the Oracle E-Business Suite IGS - Student System product family. Its purpose is to expose ACT assessment details for persons recorded in the institution's student system, presenting each assessment record together with its Reporting Year, Test Date, and Test Type. The view consolidates assessment data held in the ACT assessments table with a person identifier resolved through the alternate person identifier table, allowing ACT test records to be linked to the institution's internal person records.
The view is documented as obsolete and, per the ETRM implementation notes, "Not implemented in this database." This indicates that the view is a legacy seeded object that may not be present in every environment; it exists primarily for historical reporting and integration against ACT assessment feeds. In Oracle EBS 12.1.1 and 12.2.2, such views are typically consumed by admissions, enrolment, and institutional research reporting rather than for transactional processing. Because the view is defined WITH READ ONLY, consumers cannot perform DML against it.
The view returns one row per ACT assessment record per reporting year and test type, enriched with biographical, address, and high-school attributes supplied by the upstream ACT feed.
Underlying Base Objects
The documented view text identifies two base objects:
- IGS_AD_ACT_ASSESSMENTS (alias ACTAS) — the primary source table holding ACT assessment records, including identifiers, test metadata, scores, demographic fields, and high-school attributes.
- IGS_PE_ALT_PERS_ID (alias PEA) — the alternate person identifier table, joined to resolve the institution's internal person identifier where the person identifier type is
'ACTID'.
The join is an outer join (PEA.API_PERSON_ID (+) and PEA.PERSON_ID_TYPE(+) = 'ACTID'). The ACT identifier is normalised before matching: a leading hyphen in IGS_AD_ACT_ASSESSMENTS.ACT_IDENTIFIER is stripped using DECODE(SUBSTR(...,1,1), '-', SUBSTR(...,2), ...) so that the value compared to PEA.API_PERSON_ID corresponds to the stored alternate identifier. Because the person match is an outer join, assessment rows without a resolved person identifier are still returned, with PERSON_IDENTIFIER null.
No other base objects are documented in the ETRM metadata. Note that documentation of columns is truncated and no explicit owner is recorded.
Key Columns
- PERSON_IDENTIFIER — the institution's internal person identifier resolved from the alternate person identifier table.
- REPORTING_YEAR, TEST_TYPE, TEST_DATE_TXT — the reporting year, test type, and test date (stored as text) associated with the assessment.
- ACT_IDENTIFIER, ACT_BATCH_ID, RELEASE, NORMS_TYPE — the ACT identifier, batch identifier, release code, and norms type from the source feed.
- LAST_NAME, FIRST_NAME, MIDDLE_INITIAL, GENDER, DATE_OF_BIRTH_TXT — biographical attributes of the tested person.
- STREET_ADDRESS, CITY, STATE_CODE, STATE_ABBREVIATION, ZIP_CODE, HOME_PHONE — contact and address details.
- GRADE_LEVEL, HIGH_SCHOOL_CODE, HIGH_SCHOOL_AVERAGE, HIGH_SCHOOL_GRADUATION — high-school attributes and academic indicators.
- CORRECTED_REPORT_INDICATOR, SUM_OF_SCALE_SCORES, COLLEGE_CHOICE, COLLEGE_CODE, LOCAL_IDENTIFIER — corrected-report flag, aggregate score, and college preference/selection data.
COLLEGE_CODEis the column most frequently sought by users searching on this view. - INTERFACE_TRANSFER_DATE and audit columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE) — integration and row-level audit information.
Common Use Cases and Queries
Typical uses include admissions processing, high-school cohort analysis, verification of ACT college choices, and reconciliation of ACT batch loads. Sample query returning assessment rows for a specific college code:
SELECT person_identifier,
reporting_year,
act_identifier,
test_type,
test_date_txt,
last_name,
first_name,
college_code,
sum_of_scale_scores
FROM igsbv_ad_act_assessments
WHERE college_code = :p_college_code
AND reporting_year = :p_reporting_year;
A second query lists unmatched ACT records (no resolved person) for data-cleanup review:
SELECT act_identifier, last_name, first_name, test_type, test_date_txt FROM igsbv_ad_act_assessments WHERE person_identifier IS NULL ORDER BY reporting_year, last_name;
Because the view is read-only and reportedly not implemented in all environments, availability should be confirmed against the target instance before relying on it in custom reports or interfaces.
-
View: IGSBV_AD_ACT_ASSESSMENTS
12.2.2
product: IGS - Student System (Obsolete) , description: ACT assessment details of persons with Reporting Year, Test Date and Test Type , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_AD_ACT_ASSESSMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_AD_ACT_ASSESSMENTS, object_name:IGSBV_AD_ACT_ASSESSMENTS, status:VALID, product: IGS - Student System , description: ACT assessment details of persons with Reporting Year, Test Date and Test Type , implementation_dba_data: APPS.IGSBV_AD_ACT_ASSESSMENTS ,
-
View: IGSFV_AD_ACT_ASSESSMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_AD_ACT_ASSESSMENTS, object_name:IGSFV_AD_ACT_ASSESSMENTS, status:VALID, product: IGS - Student System , description: ACT assessment details of persons with Reporting Year, Test Date and Test Type , implementation_dba_data: APPS.IGSFV_AD_ACT_ASSESSMENTS ,
-
View: IGSFV_AD_ACT_ASSESSMENTS
12.2.2
product: IGS - Student System (Obsolete) , description: ACT assessment details of persons with Reporting Year, Test Date and Test Type , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGSFV_AD_ACT_ASSESSMENTS
12.1.1
-
VIEW: APPS.IGSBV_AD_ACT_ASSESSMENTS
12.1.1
-
VIEW: APPS.IGSFV_AD_ACT_ASSESSMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_AD_ACT_ASSESSMENTS, object_name:IGSFV_AD_ACT_ASSESSMENTS, status:VALID,
-
VIEW: APPS.IGSBV_AD_ACT_ASSESSMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_AD_ACT_ASSESSMENTS, object_name:IGSBV_AD_ACT_ASSESSMENTS, status:VALID,
-
TABLE: IGS.IGS_AD_ACT_ASSESSMENTS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_ACT_ASSESSMENTS, object_name:IGS_AD_ACT_ASSESSMENTS, status:VALID,
-
View: IGF_AP_CSS_PROFILE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_CSS_PROFILE, object_name:IGF_AP_CSS_PROFILE, status:VALID, product: IGF - Financial Aid , description: Retrieves the CSS Profile records , implementation_dba_data: APPS.IGF_AP_CSS_PROFILE ,
-
View: IGF_AP_CSS_PROFILE
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Retrieves the CSS Profile records , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGF_AP_CSS_PROFILE
12.1.1
-
VIEW: APPS.IGF_AP_CSS_INTERFACE
12.1.1
-
View: IGF_AP_CSS_INTERFACE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_CSS_INTERFACE, object_name:IGF_AP_CSS_INTERFACE, status:VALID, product: IGF - Financial Aid , description: Retrieves the Interface CSS Profile records , implementation_dba_data: APPS.IGF_AP_CSS_INTERFACE ,
-
View: IGF_AP_CSS_INTERFACE
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Retrieves the Interface CSS Profile records , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGF_AP_CSS_PROFILE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_CSS_PROFILE_V, object_name:IGF_AP_CSS_PROFILE_V, status:VALID,
-
VIEW: APPS.IGF_AP_CSS_PROFILE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_CSS_PROFILE, object_name:IGF_AP_CSS_PROFILE, status:VALID,
-
View: IGF_AP_CSS_PROFILE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_CSS_PROFILE_V, object_name:IGF_AP_CSS_PROFILE_V, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_AP_CSS_PROFILE_V ,
-
View: IGF_AP_CSS_PROFILE_V
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
TABLE: IGF.IGF_AP_CSS_PROFILE_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_AP_CSS_PROFILE_ALL, object_name:IGF_AP_CSS_PROFILE_ALL, status:VALID,
-
APPS.IGF_AP_MK_PROF_ACT_PKG SQL Statements
12.1.1
-
View: IGFBV_PROFILE_INFORMATION
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Base View for the Entity that holds the complete Profile record of the students , implementation_dba_data: Not implemented in this database ,
-
View: IGFBV_PROFILE_INFORMATION
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFBV_PROFILE_INFORMATION, object_name:IGFBV_PROFILE_INFORMATION, status:VALID, product: IGF - Financial Aid , description: Base View for the Entity that holds the complete Profile record of the students , implementation_dba_data: APPS.IGFBV_PROFILE_INFORMATION ,
-
View: IGFFV_PROFILE_INFORMATION
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Full View for the Entity that holds the complete Profile record of the students , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGF_AP_CSS_INTERFACE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_CSS_INTERFACE, object_name:IGF_AP_CSS_INTERFACE, status:VALID,
-
View: IGFFV_PROFILE_INFORMATION
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFFV_PROFILE_INFORMATION, object_name:IGFFV_PROFILE_INFORMATION, status:VALID, product: IGF - Financial Aid , description: Full View for the Entity that holds the complete Profile record of the students , implementation_dba_data: APPS.IGFFV_PROFILE_INFORMATION ,
-
APPS.IGF_AP_CSS_PROFILE_PKG SQL Statements
12.1.1
-
APPS.IGF_AP_PROFILE_MATCHING_PKG SQL Statements
12.1.1
-
APPS.IGF_AP_PROFILE_MATCHING_PKG dependencies on IGF_AP_RECORD_MATCH_ALL
12.1.1
-
APPS.IGF_AP_CSS_INTERFACE_PKG dependencies on IGF_AP_CSS_INTERFACE_ALL
12.1.1
-
VIEW: APPS.IGFBV_PROFILE_INFORMATION
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFBV_PROFILE_INFORMATION, object_name:IGFBV_PROFILE_INFORMATION, status:VALID,
-
TABLE: IGF.IGF_AP_CSS_INTERFACE_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_AP_CSS_INTERFACE_ALL, object_name:IGF_AP_CSS_INTERFACE_ALL, status:VALID,
-
VIEW: APPS.IGFFV_PROFILE_INFORMATION
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFFV_PROFILE_INFORMATION, object_name:IGFFV_PROFILE_INFORMATION, status:VALID,
-
APPS.IGF_AP_PROFILE_MATCHING_PKG dependencies on IGF_AP_CSS_INTERFACE
12.1.1
-
APPS.IGF_AP_PROFILE_MATCHING_PKG dependencies on IGF_AP_FA_BASE_REC
12.1.1
-
PACKAGE BODY: APPS.IGF_AP_MK_PROF_ACT_PKG
12.1.1
-
APPS.IGF_AP_PROFILE_MATCHING_PKG dependencies on IGF_AP_RECORD_MATCH
12.1.1
-
APPS.IGF_AP_CSS_INTERFACE_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGF_AP_PROFILE_MATCHING_PKG
12.1.1
-
PACKAGE BODY: APPS.IGF_AP_CSS_PROFILE_PKG
12.1.1
-
PACKAGE BODY: APPS.IGF_AP_CSS_INTERFACE_PKG
12.1.1
-
PACKAGE BODY: APPS.IGF_AP_LI_PROF_IMP_PROC
12.1.1
-
eTRM - IGF Tables and Views
12.1.1
description: Holds pays only unit details for a pays only program ,
-
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'. ,