Search Results igs_ad_appqual_code
Overview
The IGS_AD_APPQUAL_CODE table is a core transactional entity within the Oracle E-Business Suite Student System (IGS). Its primary function is to store detailed qualification data associated with a specific application instance submitted by a prospective student. This table acts as a child table, capturing the various qualifying criteria—such as standardized test scores, prior academic achievements, or other defined metrics—that an applicant submits as part of their application for a nominated course of study. Its implementation ensures that multiple qualification records can be accurately linked to a single application, supporting the comprehensive evaluation of applicant eligibility and merit.
Key Information Stored
The table's structure is designed to uniquely identify each qualification entry within the context of an application. The primary key is a composite of five columns, ensuring a unique record for each qualification type per application line. Key columns include PERSON_ID, ADMISSION_APPL_NUMBER, and NOMINATED_COURSE_CD, which together identify the specific application instance from the parent IGS_AD_PS_APPL_INST_ALL table. The SEQUENCE_NUMBER differentiates between multiple qualifications of the same type, if applicable. The QUALIFYING_TYPE_CODE categorizes the nature of the qualification (e.g., GPA, SAT score). Crucially, the QUALIFYING_CODE_ID column holds a foreign key reference to IGS_AD_CODE_CLASSES, which stores the actual descriptive value or code for the qualification, separating the classification from its specific instance value for greater flexibility and maintainability.
Common Use Cases and Queries
This table is central to admission processing workflows. Common operational and reporting use cases include generating detailed applicant qualification summaries for review by admissions committees, validating if minimum entry requirements are met, and aggregating statistical data on applicant pools for institutional reporting. A typical query might join this table to the application instance and code classes tables to retrieve a clean list of all qualifications for an application. For example:
SELECT aap.person_id, aap.admission_appl_number, acc.qualifying_type_code, cl.code_description, aap.qualifying_code_id FROM igs_ad_appqual_code aap JOIN igs_ad_code_classes cl ON aap.qualifying_code_id = cl.code_id WHERE aap.person_id = :1 AND aap.admission_appl_number = :2;
Data from this table is also essential for integration with external scholarship systems or for feeding data into student profiles upon successful enrollment.
Related Objects
The IGS_AD_APPQUAL_CODE table maintains critical referential integrity through defined foreign key relationships with other core Student System tables. Its primary parent table is IGS_AD_PS_APPL_INST_ALL. The relationship is established through a composite foreign key on the columns PERSON_ID, ADMISSION_APPL_NUMBER, NOMINATED_COURSE_CD, and SEQUENCE_NUMBER, tethering each qualification record directly to a specific line on an application. Furthermore, it references the IGS_AD_CODE_CLASSES table via the QUALIFYING_CODE_ID column. This link is vital for retrieving the actual value, description, and classification details of the stored qualification code, separating transactional data from the controlled code master list. These relationships underscore its role as a central hub for detailed applicant assessment data.
-
Table: IGS_AD_APPQUAL_CODE
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_APPQUAL_CODE, object_name:IGS_AD_APPQUAL_CODE, status:VALID, product: IGS - Student System , description: New Transaction table to hold the qualification type and its value for each application instance , implementation_dba_data: IGS.IGS_AD_APPQUAL_CODE ,
-
View: IGS_AD_APPQUAL_CODE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_APPQUAL_CODE_V, object_name:IGS_AD_APPQUAL_CODE_V, status:VALID, product: IGS - Student System , description: View is based on the table IGS_AD_APPQUAL_CODE and this will be the base view for enter qual code page. , implementation_dba_data: APPS.IGS_AD_APPQUAL_CODE_V ,
-
Table: IGS_AD_PS_APPL_INST_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_PS_APPL_INST_ALL, object_name:IGS_AD_PS_APPL_INST_ALL, status:VALID, product: IGS - Student System , description: Holds the request for program entry for an admission period , implementation_dba_data: IGS.IGS_AD_PS_APPL_INST_ALL ,
-
Table: IGS_AD_CODE_CLASSES
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_CODE_CLASSES, object_name:IGS_AD_CODE_CLASSES, status:VALID, product: IGS - Student System , description: Holds information about different codes, class to which code belongs, and description , implementation_dba_data: IGS.IGS_AD_CODE_CLASSES ,