Search Results institution_state
Overview
IGS_PR_ACAD_TRANS_CREDIT_V is a reporting view owned by the APPS schema in Oracle E-Business Suite, delivered as part of the Student System (IGS) product family. It consolidates academic transfer credit information for students, joining data from the student program attempt records, academic history, higher-education party (institution) information, and advanced standing unit detail. The view exposes a flattened, denormalized result set suitable for reporting on credit awarded to a learner in recognition of prior learning, prior academic achievement, or transfer coursework from other institutions.
The name components reflect its purpose: "ACAD_TRANS" (academic transfer) and "CREDIT." The view is typically consumed by institution-facing extracts, credit-transfer reporting, admissions evaluation screens, and integration interfaces that feed downstream credit articulation or student-record systems. Because it aggregates credit points across the student's advanced-standing unit records, it provides a single authoritative row per student, program, and institution combination, making it convenient for financial-aid, graduation-audit, and external-transcript reporting.
The view also carries institution location attributes such as city, state, and postal code, surfaced through the HZ geography join. This makes the institution_state column (aliased from HZ.STATE within the HZ_PARTIES join) directly available for jurisdictional and state-level reporting, which is often the reason users search for this object.
Underlying Base Objects
Based on the documented view text, the following objects are referenced directly or through inline subqueries:
- IGS_EN_STDNT_PS_ATT_ALL (alias SPA) — student program attempt records; supplies person, course/program code.
- HZ_PARTIES (aliases PE and HZ) — party master records; PE provides the person party number, HZ supplies institution city/state/postal code.
- IGS_AD_ACAD_HISTORY_V (alias AHV) — academic history view; supplies institution code, name, type, program type attempted/earned, dates, education ID.
- IGS_AD_TRANSCRIPT, IGS_AD_TERM_DETAILS, IGS_AD_TERM_UNITDTLS — transcript and term structure used in the inline advanced-standing subqueries.
- IGS_AV_STND_UNIT_ALL and IGS_AV_STND_UNIT_LVL_ALL — advanced standing unit and unit-level records; these are the sources of credit points, filtered to GRANTED status and CREDIT recognition type.
- IGS_PE_HZ_PARTIES (alias IPZ) — external organization unit mapping used in an outer join to associate institution codes with parties.
The view is therefore a multi-table join with an internal UNION ALL over two advanced-standing sources, aggregated by student and program.
Key Columns
- PERSON_ID / PERSON_NUMBER — student identifier and party number.
- PROGRAM_CD — the student's course/program code.
- INSTITUTION_CODE, INSTITUTION_NAME, INSTITUTION_TYPE — details of the granting or prior institution.
- INSTITUTION_CITY, INSTITUTION_STATE, INSTITUTION_POSTAL_CODE — geography from HZ_PARTIES; institution_state supports state-level reporting.
- START_DATE, END_DATE — attendance period at the institution.
- PROGRAM_TYPE_ATTEMPTED, PROGRAM_TYPE_EARNED, PROGRAM_CODE, TITLE — academic program attributes.
- EDUCATION_ID — links the credit to the education record.
- CREDIT_POINTS — aggregated credit awarded, summed from the union of advanced-standing unit sources.
Common Use Cases and Queries
Typical consumers query the view to produce credit-transfer summaries, graduation audits, and jurisdiction reporting.
Sample SQL to retrieve total transfer credit per student by institution and state:
SELECT person_number, program_cd, institution_name, institution_state,
SUM(credit_points) total_credit
FROM apps.igs_pr_acad_trans_credit_v
GROUP BY person_number, program_cd, institution_name, institution_state
ORDER BY person_number;
A state-restricted variant, often triggered by the "institution_state" search term:
SELECT person_id, institution_name, credit_points FROM apps.igs_pr_acad_trans_credit_v WHERE institution_state = 'CA';
Because the view aggregates advanced-standing credit records filtered by GRANTED status and CREDIT recognition type, results reflect only confirmed credit awards, not proposed or pending evaluations. Analysts should note the outer join on IGS_PE_HZ_PARTIES, which may return null institution-city/state values where no party mapping exists.
-
VIEW: APPS.IGS_PR_ACAD_TRANS_CREDIT_V
12.1.1
-
View: IGS_PR_ACAD_TRANS_CREDIT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PR_ACAD_TRANS_CREDIT_V, object_name:IGS_PR_ACAD_TRANS_CREDIT_V, status:VALID, product: IGS - Student System , description: This view contains the details of credit granted through advanced standing based on the Person Transcript Units structure. The credit is shown only as an aggregated summary figure. , implementation_dba_data: APPS.IGS_PR_ACAD_TRANS_CREDIT_V ,
-
View: IGS_PR_ACAD_TRANS_CREDIT_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view contains the details of credit granted through advanced standing based on the Person Transcript Units structure. The credit is shown only as an aggregated summary figure. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_PR_ACAD_TRANS_CREDIT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PR_ACAD_TRANS_CREDIT_V, object_name:IGS_PR_ACAD_TRANS_CREDIT_V, status:VALID,
-
View: IGFFV_PELL_MULT_REPORT_RECORDS
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Full View for the Entity that holds the information about multiple reporting records which are uploaded from an external system , implementation_dba_data: Not implemented in this database ,
-
View: IGFFV_PELL_MULT_REPORT_RECORDS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFFV_PELL_MULT_REPORT_RECORDS, object_name:IGFFV_PELL_MULT_REPORT_RECORDS, status:VALID, product: IGF - Financial Aid , description: Full View for the Entity that holds the information about multiple reporting records which are uploaded from an external system , implementation_dba_data: APPS.IGFFV_PELL_MULT_REPORT_RECORDS ,
-
VIEW: APPS.IGFFV_PELL_MULT_REPORT_RECORDS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFFV_PELL_MULT_REPORT_RECORDS, object_name:IGFFV_PELL_MULT_REPORT_RECORDS, status:VALID,
-
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'. ,