Search Results igs_ad_transcript_v
Overview
The IGS_AD_TRANSCRIPT_V view is a denormalized presentation object owned by the APPS schema within the Oracle EBS Student System (IGS) product family. It consolidates transcript header information for admissions and academic records processing, exposing both coded values and their human-readable meanings in a single row shape. Its principal role is to support reporting, extracts, and integrations that require transcript data without repeatedly joining lookup and code-class tables. For users searching on transcript_source_code, the view is directly relevant because it resolves the internal source identifier (TRANSSCRIPT_SOURCE) against the code classes table and surfaces the friendly name as TRANSCRIPT_SOURCE_CODE. This eliminates the need for consumers to know that the underlying value is a CODE_ID referencing IGS_AD_CODE_CLASSES.
Underlying Base Objects
Per the ETRM documentation, the view is defined over the following objects:
- IGS_AD_TRANSCRIPT — alias T; the driving base table holding the transcript record itself.
- IGS_LOOKUPS_VIEW — aliases L1, L2, and L3; used to decode lookup codes for TRANSCRIPT_STATUS, TERM_TYPE, and TRANSCRIPT_TYPE respectively.
- IGS_AD_CODE_CLASSES — aliases CC1, CC2, and CC3; used to resolve code identifiers for the entered and converted grading scales and for the transcript source.
All joins are simple equality predicates. STATUS, TERM_TYPE, and TRANSCRIPT_TYPE are matched against IGS_LOOKUPS_VIEW using their respective LOOKUP_TYPE discriminators ('TRANSCRIPT_STATUS', 'TERM_TYPE', 'TRANSCRIPT_TYPE'). The three IGS_AD_CODE_CLASSES joins resolve CODE_ID values for ENTERED_GS_ID, CONV_GS_ID, and TRANSCRIPT_SOURCE. The ETRM metadata records no referenced base objects explicitly, but the view text above establishes these relationships.
Key Columns
- ROW_ID — the ROWID of the underlying transcript row, useful for direct row addressing.
- TRANSCRIPT_ID — primary key of the transcript record.
- EDUCATION_ID — foreign key linking the transcript to the applicant's education record.
- TRANSCRIPT_STATUS / TRANSCRIPT_STATUS_MEANING — coded status plus decoded meaning.
- TRANSCRIPT_SOURCE / TRANSCRIPT_SOURCE_CODE — the internal source code identifier and its resolved name from IGS_AD_CODE_CLASSES; this is the pair most relevant to the user's search term.
- TRANSCRIPT_TYPE / TRANSCRIPT_TYPE_MEANING — transcript category and its decoded value.
- TERM_TYPE / TERM_TYPE_MEANING — term classification and decoded value.
- DATE_OF_RECEIPT / DATE_OF_ISSUE — receipt and issuance dates.
- RANK_IN_CLASS, CLASS_SIZE, WEIGHTED_RANK, APPROXIMATE_RANK, PERCENTILE_RANK, DECILE_RANK, QUARTILE_RANK, QUINTILE_RANK — academic ranking measures.
- ENTERED_GPA / ENTERED_GS_ID / ENTERED_GRADING_SCALE — GPA as entered, the grading scale identifier, and its resolved name.
- CONV_GPA / CONV_GS_ID / CONV_GRADING_SCALE — converted GPA and the associated grading scale.
- OVERRIDE, OVERRIDE_ID, OVERRIDE_DATE — override flag and audit fields.
- Standard WHO columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN, REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE) plus CORE_CURRICULUM_VALUE.
Common Use Cases and Queries
Typical uses include transcript verification reports, applicant screening extracts, and inbound/outbound integration feeds where decoded values are required. A query filtering by source code is straightforward:
SELECT transcript_id, education_id, transcript_source_code, transcript_type_meaning FROM igs_ad_transcript_v WHERE transcript_source_code = :source;SELECT transcript_id, transcript_status_meaning, date_of_receipt, entered_gpa FROM igs_ad_transcript_v WHERE education_id = :education_id;- Joining back to IGS_AD_TRANSCRIPT on TRANSCRIPT_ID when additional unexposed columns are needed.
Because the view already performs all lookup and code-class resolution, it is the preferred access path for reporting layers and external interfaces over the raw base table.
-
View: IGS_AD_TRANSCRIPT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_TRANSCRIPT_V, object_name:IGS_AD_TRANSCRIPT_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_AD_TRANSCRIPT_V ,
-
View: IGS_AD_TRANSCRIPT_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
SYNONYM: APPS.IGS_AD_TRANSCRIPT
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_AD_TRANSCRIPT, status:VALID,
-
PACKAGE BODY: APPS.IGS_AD_TERM_DETAILS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AD_TERM_DETAILS_PKG, status:VALID,
-
PACKAGE BODY: APPS.IGS_AD_TERM_UNITDTLS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AD_TERM_UNITDTLS_PKG, status:VALID,
-
PACKAGE BODY: APPS.IGS_AD_ACAD_HISTORY_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AD_ACAD_HISTORY_PKG, status:VALID,
-
PACKAGE BODY: APPS.IGS_AD_TRANSCRIPT_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AD_TRANSCRIPT_PKG, status:VALID,
-
SYNONYM: APPS.IGS_AD_CODE_CLASSES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_AD_CODE_CLASSES, status:VALID,
-
VIEW: APPS.IGS_AD_TRANSCRIPT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_TRANSCRIPT_V, object_name:IGS_AD_TRANSCRIPT_V, status:VALID,
-
VIEW: APPS.IGS_LOOKUPS_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_LOOKUPS_VIEW, object_name:IGS_LOOKUPS_VIEW, status:VALID,
-
APPS.IGS_AD_ACAD_HISTORY_PKG SQL Statements
12.1.1
-
APPS.IGS_AD_TERM_DETAILS_PKG SQL Statements
12.1.1
-
APPS.IGS_AD_TERM_UNITDTLS_PKG SQL Statements
12.1.1
-
APPS.IGS_AD_TRANSCRIPT_PKG dependencies on IGS_AD_TRANSCRIPT_V
12.1.1
-
APPS.IGS_AD_TERM_DETAILS_PKG dependencies on IGS_AD_TRANSCRIPT_V
12.1.1
-
APPS.IGS_AD_TERM_UNITDTLS_PKG dependencies on IGS_AD_TRANSCRIPT_V
12.1.1
-
APPS.IGS_AD_ACAD_HISTORY_PKG dependencies on IGS_AD_TRANSCRIPT_V
12.1.1
-
APPS.IGS_AD_TRANSCRIPT_PKG SQL Statements
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
APPS.IGS_AD_TERM_UNITDTLS_PKG dependencies on IGS_AD_TERM_DETAILS_V
12.1.1
-
APPS.IGS_AD_ACAD_HISTORY_PKG dependencies on IGS_AD_CODE_CLASSES
12.1.1
-
APPS.IGS_AD_TERM_DETAILS_PKG dependencies on IGS_AD_ACAD_HISTORY_V
12.1.1
-
APPS.IGS_AD_TERM_UNITDTLS_PKG dependencies on IGS_AD_ACAD_HISTORY_V
12.1.1
-
PACKAGE BODY: APPS.IGS_AD_ACAD_HISTORY_PKG
12.1.1
-
APPS.IGS_AD_TERM_UNITDTLS_PKG dependencies on IGS_AD_TERM_DETAILS
12.1.1
-
PACKAGE BODY: APPS.IGS_AD_TERM_UNITDTLS_PKG
12.1.1
-
PACKAGE BODY: APPS.IGS_AD_TERM_DETAILS_PKG
12.1.1
-
APPS.IGS_AD_ACAD_HISTORY_PKG dependencies on IGS_AD_ACAD_HISTORY_V
12.1.1
-
APPS.IGS_AD_TRANSCRIPT_PKG dependencies on IGS_AD_TRANSCRIPT
12.1.1
-
PACKAGE BODY: APPS.IGS_AD_TRANSCRIPT_PKG
12.1.1
-
12.1.1 DBA 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'. ,
-
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'. ,