Search Results igs_uc_ref_codes
Overview
The IGS_UC_REF_CODES table is a core reference data repository within the Oracle E-Business Suite's Student System (IGS). It functions as a centralized lookup table designed to store standardized codes and their corresponding human-readable descriptions. Its primary role is to enforce data consistency and provide display values for forms and reports across the UC (Universities and Colleges) application modules. By decoupling code values from their descriptions, this table facilitates easier maintenance, translation, and validation of key reference data points throughout the student lifecycle management system in releases 12.1.1 and 12.2.2.
Key Information Stored
The table's structure is optimized for managing categorized reference data. The most critical columns are defined by its primary key constraint, IGS_UC_REF_CODES_PK. The CODE_TYPE column categorizes the reference code, linking to the IGS_UC_REF_CODETYPS table to define valid domains (e.g., 'EXAM_LEVEL', 'COUNTRY'). The CODE column stores the actual abbreviated value used as a foreign key in transactional tables. Typically, a DESCRIPTION column (implied by the documentation's purpose) would store the full textual meaning of the code for user interfaces. This design allows for efficient storage and retrieval of standardized lists such as examination levels, qualification types, or institutional statuses.
Common Use Cases and Queries
This table is fundamental for data validation and user interface population. A common use case is populating a list of values (LOV) in an EBS form for a field like "Exam Level," where the form queries IGS_UC_REF_CODES for all codes of a specific CODE_TYPE. For reporting, it is frequently joined to transactional tables to translate stored codes into meaningful descriptions. A typical SQL pattern involves joining to a related transactional table:
- Retrieving descriptive text for exam scores:
SELECT s.score, r.code, r.description FROM igs_uc_exam_scores s, igs_uc_ref_codes r WHERE s.ref_code_type = r.code_type AND s.exam_level = r.code; - Querying all active codes for a specific type:
SELECT code, description FROM igs_uc_ref_codes WHERE code_type = 'EXAM_LEVEL' ORDER BY code;
Related Objects
The IGS_UC_REF_CODES table maintains defined relationships with several other key objects in the IGS schema, as per the provided metadata. It has a mandatory foreign key relationship with IGS_UC_REF_CODETYPS on the CODE_TYPE column, which controls the valid domains of reference data. Crucially, it is referenced by the IGS_UC_EXAM_SCORES table via a composite foreign key on the columns REF_CODE_TYPE and EXAM_LEVEL. This indicates that IGS_UC_REF_CODES provides the valid set of examination level codes used to record student examination results. Other tables in the module likely reference it for similar lookup purposes, establishing it as a central hub for standardized code management.
-
Table: IGS_UC_REF_CODES
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_UC_REF_CODES, object_name:IGS_UC_REF_CODES, status:VALID, product: IGS - Student System , description: Holds the list of reference codes used in other tables and their descriptions for the purpose of display in forms , implementation_dba_data: IGS.IGS_UC_REF_CODES ,
-
Table: IGS_UC_REF_CODES
12.2.2
product: IGS - Student System (Obsolete) , description: Holds the list of reference codes used in other tables and their descriptions for the purpose of display in forms , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_UC_PROC_APPLICATION_DATA dependencies on IGS_UC_REF_CODES
12.1.1
-
APPS.IGS_UC_PROC_COM_INST_DATA dependencies on IGS_UC_REF_CODES
12.1.1
-
APPS.IGS_UC_REF_CODES_PKG dependencies on IGS_UC_REF_CODES
12.1.1
-
APPS.IGS_UC_PROC_REFERENCE_DATA dependencies on IGS_UC_REF_CODES
12.1.1
-
APPS.IGS_UC_MV_IMP_DEGSUBJ dependencies on IGS_UC_REF_CODES
12.1.1
-
APPS.IGS_UC_MV_IMP_ERRCD dependencies on IGS_UC_REF_CODES
12.1.1
-
VIEW: APPS.IGSFV_UC_APPLICANT_STATISTICS
12.1.1
-
View: IGSFV_UC_APPLICANT_STATISTICS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_UC_APPLICANT_STATISTICS, object_name:IGSFV_UC_APPLICANT_STATISTICS, status:VALID, product: IGS - Student System , description: Full View for Applicant data required for HESA purpose , implementation_dba_data: APPS.IGSFV_UC_APPLICANT_STATISTICS ,
-
VIEW: APPS.IGS_UC_EXP_QUAL_SUM_V
12.1.1
-
View: IGSFV_UC_APPLICANT_STATISTICS
12.2.2
product: IGS - Student System (Obsolete) , description: Full View for Applicant data required for HESA purpose , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_UC_REF_CODES_PKG SQL Statements
12.1.1
-
VIEW: APPS.IGSFV_UC_EXP_QUAL_SUMMARIES
12.1.1
-
View: IGSFV_UC_EXP_QUAL_SUMMARIES
12.2.2
product: IGS - Student System (Obsolete) , description: Full View for summary of qualifications attained by this applicant , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_UC_REF_CODETYPS
12.2.2
product: IGS - Student System (Obsolete) , description: Holds the list of reference code types used in IGS_UC_REF_CODES. - OBSOLETE , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_UC_REF_CODETYPS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_UC_REF_CODETYPS, object_name:IGS_UC_REF_CODETYPS, status:VALID, product: IGS - Student System , description: Holds the list of reference code types used in IGS_UC_REF_CODES. - OBSOLETE , implementation_dba_data: IGS.IGS_UC_REF_CODETYPS ,
-
Table: IGS_UC_EXAM_SCORES
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_UC_EXAM_SCORES, object_name:IGS_UC_EXAM_SCORES, status:VALID, product: IGS - Student System , description: Holds records that links to exam level values in IGS_UC_REF_CODES and holds grades/points against exam levels. , implementation_dba_data: IGS.IGS_UC_EXAM_SCORES ,
-
Table: IGS_UC_EXAM_SCORES
12.2.2
product: IGS - Student System (Obsolete) , description: Holds records that links to exam level values in IGS_UC_REF_CODES and holds grades/points against exam levels. , implementation_dba_data: Not implemented in this database ,
-
SYNONYM: APPS.IGS_UC_REF_CODES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_UC_REF_CODES, status:VALID,
-
View: IGS_UC_EXP_QUAL_SUM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_UC_EXP_QUAL_SUM_V, object_name:IGS_UC_EXP_QUAL_SUM_V, status:VALID, product: IGS - Student System , description: View which selects the Expected Qualification Summary Details , implementation_dba_data: APPS.IGS_UC_EXP_QUAL_SUM_V ,
-
APPS.IGS_UC_PROC_APPLICATION_DATA dependencies on IGS_UC_ISTARX_INTS
12.1.1
-
VIEW: APPS.IGS_UC_COND_DETAILS_V
12.1.1
-
View: IGS_UC_EXP_QUAL_SUM_V
12.2.2
product: IGS - Student System (Obsolete) , description: View which selects the Expected Qualification Summary Details , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_UC_EXP_QUAL_SUMMARIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_UC_EXP_QUAL_SUMMARIES, object_name:IGSFV_UC_EXP_QUAL_SUMMARIES, status:VALID, product: IGS - Student System , description: Full View for summary of qualifications attained by this applicant , implementation_dba_data: APPS.IGSFV_UC_EXP_QUAL_SUMMARIES ,
-
APPS.IGS_UC_PROC_APPLICATION_DATA dependencies on IGS_UC_ISTARH_INTS
12.1.1
-
VIEW: APPS.IGSFV_UC_CONDITION_DETAILS
12.1.1
-
TABLE: IGS.IGS_UC_REF_CODES
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_UC_REF_CODES, object_name:IGS_UC_REF_CODES, status:VALID,
-
PACKAGE BODY: APPS.IGS_UC_REF_CODES_PKG
12.1.1
-
VIEW: APPS.IGSFV_UC_APPLICANTS
12.1.1
-
View: IGSFV_UC_APPLICANTS
12.2.2
product: IGS - Student System (Obsolete) , description: Full View for UCAS Applicant Details , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_UC_REF_CODES_PKG dependencies on IGS_UC_REF_CODES_PKG
12.1.1
-
PACKAGE BODY: APPS.IGS_UC_MV_IMP_ERRCD
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_UC_MV_IMP_ERRCD, status:VALID,
-
VIEW: APPS.IGSFV_UC_TRANSACTIONS
12.1.1
-
View: IGS_UC_COND_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_UC_COND_DETAILS_V, object_name:IGS_UC_COND_DETAILS_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_UC_COND_DETAILS_V ,
-
PACKAGE BODY: APPS.IGS_UC_REF_CODES_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_UC_REF_CODES_PKG, status:VALID,
-
PACKAGE BODY: APPS.IGS_UC_MV_IMP_DEGSUBJ
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_UC_MV_IMP_DEGSUBJ, status:VALID,
-
View: IGSFV_UC_APPLICANTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_UC_APPLICANTS, object_name:IGSFV_UC_APPLICANTS, status:VALID, product: IGS - Student System , description: Full View for UCAS Applicant Details , implementation_dba_data: APPS.IGSFV_UC_APPLICANTS ,
-
View: IGS_UC_COND_DETAILS_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_UC_CONDITION_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_UC_CONDITION_DETAILS, object_name:IGSFV_UC_CONDITION_DETAILS, status:VALID, product: IGS - Student System , description: Full View for condition details that makes up the offer , implementation_dba_data: APPS.IGSFV_UC_CONDITION_DETAILS ,
-
View: IGSFV_UC_CONDITION_DETAILS
12.2.2
product: IGS - Student System (Obsolete) , description: Full View for condition details that makes up the offer , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGS_UC_PROC_REFERENCE_DATA
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_UC_PROC_REFERENCE_DATA, status:VALID,
-
PACKAGE BODY: APPS.IGS_UC_PROC_COM_INST_DATA
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_UC_PROC_COM_INST_DATA, status:VALID,
-
View: IGSFV_UC_TRANSACTIONS
12.2.2
product: IGS - Student System (Obsolete) , description: Full View for UCAS Transactions table , implementation_dba_data: Not implemented in this database ,
-
TABLE: IGS.IGS_UC_REF_CODETYPS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_UC_REF_CODETYPS, object_name:IGS_UC_REF_CODETYPS, status:VALID,
-
TABLE: IGS.IGS_UC_EXAM_SCORES
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_UC_EXAM_SCORES, object_name:IGS_UC_EXAM_SCORES, status:VALID,
-
PACKAGE BODY: APPS.IGS_UC_PROC_APPLICATION_DATA
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_UC_PROC_APPLICATION_DATA, status:VALID,
-
VIEW: APPS.IGSFV_UC_CONDITION_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_UC_CONDITION_DETAILS, object_name:IGSFV_UC_CONDITION_DETAILS, status:VALID,
-
View: IGSFV_UC_TRANSACTIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_UC_TRANSACTIONS, object_name:IGSFV_UC_TRANSACTIONS, status:VALID, product: IGS - Student System , description: Full View for UCAS Transactions table , implementation_dba_data: APPS.IGSFV_UC_TRANSACTIONS ,
-
APPS.IGS_UC_PROC_COM_INST_DATA dependencies on IGS_UC_CVSCH_INTS
12.1.1