Search Results approximate_rank




Overview

APPS.IGSBV_PERSON_ACAD_TRANSCRIPTS is a read-only concurrent-programming style view in the Oracle E-Business Suite Student Systems / Student Records (IGS) schema. It presents academic transcript information held against a person's educational history and is designed primarily for reporting, integration, and inquiry purposes rather than for transactional maintenance. The view is defined with an inline WITH READ ONLY constraint, meaning any attempt to issue DML against it will fail at runtime. Records must be maintained in the underlying base table through the standard Student Records application forms or APIs.

The "BV" naming convention indicates a reporting/reference view rather than a table-backed entity, and the column list shows that the view is intended to surface transcript attributes — issue and receipt dates, GPA values, class-rank metrics, transcript source, and descriptive lookup meanings — in a form that is convenient for downstream consumption. It is one of the objects a developer or analyst would query when building transcript extracts, student academic dashboards, or third-party data feeds.

Underlying Base Objects

The view is defined over a single base object, IGS_AD_TRANSCRIPT, as shown by the FROM IGS_AD_TRANSCRIPT WITH READ ONLY clause. No other base tables or joins are documented in the ETRM metadata, and the referenced base objects field is empty. The view is therefore a relatively thin projection: it selects columns from the transcript table directly, applies column aliases, and performs a small amount of inline decoding via Oracle's flexfield "lookup" syntax.

That inline decoding is worth noting. The literal string pattern '_LA:TRANSCRIPT_TYPE:IGS_LOOKUP_VALUES:TRANSCRIPT_TYPE:MEANING' is a flexfield-style descriptive segment reference. At runtime in a properly seeded EBS environment the string is resolved against IGS_LOOKUP_VALUES to return the MEANING for the given lookup type. The same pattern is used for TRANSCRIPT_STATUS and TERM_TYPE. This means that although the ETRM metadata lists only IGS_AD_TRANSCRIPT as a referenced base object, the view depends logically on the lookup values seeded in IGS_LOOKUP_VALUES for its descriptive columns.

Key Columns

Common Use Cases and Queries

The view is typically used for student transcript reporting, data migration validation, and integration extracts feeding external systems. A common pattern is to filter on transcript source or status to identify transcripts flagged for review.

SELECT transcript_id, transcript_source_id, entered_gpa, converted_gpa, date_of_receipt
FROM apps.igsbv_person_acad_transcripts
WHERE transcript_source_id = :p_source;

A second scenario retrieves rank information for a cohort:

SELECT education_id, rank_in_class, class_size, percentile_rank, quartile_rank
FROM apps.igsbv_person_acad_transcripts
ORDER BY education_id;

Because the view is read-only and joins no other tables, it is efficient for bulk extraction but should be combined with person or education joins in the calling query when student-identifying information is required. Note that in 12.1.1 the inline lookup syntax depends on the corresponding lookup types being present in the runtime environment; in 12.2.2 the behaviour is consistent, and the view remains a supported reporting object.