Search Results igs_ad_appl_perstat
Overview
The IGS_AD_APPL_PERSTAT table is a core data structure within the Oracle E-Business Suite (EBS) Student System (IGS) module, specifically for versions 12.1.1 and 12.2.2. It serves as the primary repository for storing personal statement details submitted as part of an admission application. Personal statements are critical narrative components where applicants articulate their qualifications, goals, and motivations. This table's role is to maintain a formal, auditable link between an applicant, their specific application, and the textual or structured personal statement data they provide, thereby supporting the holistic review and evaluation process within the admissions lifecycle.
Key Information Stored
The table's primary purpose is to associate personal statement content with a specific application. Its key columns, as indicated by its foreign key relationships, are the identifiers for the applicant and application, and the type of personal statement. The primary technical identifier is the APPL_PERSTAT_ID column, which is the primary key. The most significant data columns are PERSON_ID and ADMISSION_APPL_NUMBER, which together uniquely identify the parent application record in the IGS_AD_APPL_ALL table. The PERSL_STAT_TYPE column stores a code that categorizes the personal statement (e.g., primary statement, supplemental essay, statement of purpose), referencing the IGS_AD_PER_STM_TYP table for valid values. The table likely also contains columns for the statement text itself (e.g., a CLOB or LONG column), creation dates, and last update information, though these are not explicitly detailed in the provided metadata.
Common Use Cases and Queries
This table is central to admissions operations and reporting. Common use cases include retrieving all personal statements for a specific applicant to review their complete submission, extracting statements for a particular application cycle for reviewer assignment, or auditing statement submissions. A typical query would join to the main application table to fetch applicant demographics alongside their statement data. For example:
SELECT appl.PERSON_ID, appl.ADMISSION_APPL_NUMBER, perstat.PERSL_STAT_TYPE, perstat.[statement_text_column]
Data from this table may also be surfaced in application review forms, printed application packets, and analytics dashboards measuring application completeness.
FROM IGS_AD_APPL_PERSTAT perstat
JOIN IGS_AD_APPL_ALL appl ON perstat.PERSON_ID = appl.PERSON_ID AND perstat.ADMISSION_APPL_NUMBER = appl.ADMISSION_APPL_NUMBER
WHERE appl.ADM_APPL_CAL_TYPE = 'FALL-2024';
Related Objects
The IGS_AD_APPL_PERSTAT table has defined dependencies on two key tables in the Student System, as per the provided relationship data:
- IGS_AD_APPL_ALL: This is the master admissions application table. IGS_AD_APPL_PERSTAT references it via a composite foreign key on the columns PERSON_ID and ADMISSION_APPL_NUMBER. This ensures every personal statement is tied to a valid, existing application.
- IGS_AD_PER_STM_TYP: This lookup table defines the valid types of personal statements. IGS_AD_APPL_PERSTAT references it via the PERSL_STAT_TYPE column, enforcing data integrity for statement categorization.
-
Table: IGS_AD_APPL_PERSTAT
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_APPL_PERSTAT, object_name:IGS_AD_APPL_PERSTAT, status:VALID, product: IGS - Student System , description: This table holds the Admission Application Personal Statement details , implementation_dba_data: IGS.IGS_AD_APPL_PERSTAT ,
-
Table: IGS_AD_PER_STM_TYP
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_PER_STM_TYP, object_name:IGS_AD_PER_STM_TYP, status:VALID, product: IGS - Student System , description: This table holds the Personal Statement Types , implementation_dba_data: IGS.IGS_AD_PER_STM_TYP ,
-
View: IGS_AD_APPL_PERSTAT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_APPL_PERSTAT_V, object_name:IGS_AD_APPL_PERSTAT_V, status:VALID, product: IGS - Student System , description: Admission Application Personal Statement view , implementation_dba_data: APPS.IGS_AD_APPL_PERSTAT_V ,
-
View: IGSFV_AD_APPL_PERSTAT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_AD_APPL_PERSTAT, object_name:IGSFV_AD_APPL_PERSTAT, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGSFV_AD_APPL_PERSTAT ,
-
View: IGSBV_AD_APPL_PERSTAT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_AD_APPL_PERSTAT, object_name:IGSBV_AD_APPL_PERSTAT, status:VALID, product: IGS - Student System , description: Holds information about Applicant's personal statement , implementation_dba_data: APPS.IGSBV_AD_APPL_PERSTAT ,
-
Table: IGS_AD_APPL_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_APPL_ALL, object_name:IGS_AD_APPL_ALL, status:VALID, product: IGS - Student System , description: Describes admission of applicant to institution , implementation_dba_data: IGS.IGS_AD_APPL_ALL ,