Search Results igs_ss_ad_edugoa_stg_pk
Overview
The table IGS_SS_AD_EDUGOA_STG is a staging table within the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2 Student System (IGS) module. Its primary function is to temporarily hold data related to an applicant's educational goals after enrollment, specifically for a self-service admission application program instance. This table acts as a data repository during the application submission process, facilitating the capture and subsequent validation of an applicant's post-enrollment academic objectives before the information is formally processed and integrated into the core application tables. Its role is critical in the self-service admission workflow, ensuring data integrity and supporting the online application experience.
Key Information Stored
The table stores staging data for applicant education goals. While the full column list is not detailed in the provided metadata, the documented primary and foreign keys reveal its core structure. The primary identifier is the SS_EDUGOA_ID column. The table links to the main application staging record via the SS_ADMAPPL_PGM_ID foreign key, which ties a specific education goal to a particular self-service application program instance. Furthermore, the EDU_GOAL_ID foreign key references a code from IGS_AD_CODE_CLASSES, indicating that the actual educational goal (e.g., "Obtain a Bachelor's Degree," "Prepare for Graduate School") is stored as a validated lookup value. Additional columns likely exist to store supplemental details, timestamps, and process status flags for the staged goal data.
Common Use Cases and Queries
The primary use case involves managing data during the online admission application lifecycle. When an applicant saves or submits their application, their entered education goals are written to this staging table. Common operational and reporting queries include retrieving all staged goals for a specific application to display in a review screen, identifying applications with incomplete goal information, and extracting data for batch validation or load processes into permanent tables. A typical SQL pattern would join this table to its parent and code table:
- SELECT ssaapg.*, edugoa.*, acc.MEANING AS GOAL_DESCRIPTION
- FROM IGS_SS_AD_EDUGOA_STG edugoa,
- IGS_SS_APP_PGM_STG ssaapg,
- IGS_AD_CODE_CLASSES acc
- WHERE edugoa.SS_ADMAPPL_PGM_ID = ssaapg.SS_ADMAPPL_PGM_ID
- AND edugoa.EDU_GOAL_ID = acc.CODE_ID
- AND ssaapg.APPLICANT_NUMBER = '12345';
Related Objects
IGS_SS_AD_EDUGOA_STG has defined foreign key relationships with two core tables, as per the provided metadata:
- IGS_SS_APP_PGM_STG: This is the primary parent staging table for the self-service application program instance. The relationship is established via the column IGS_SS_AD_EDUGOA_STG.SS_ADMAPPL_PGM_ID, which references IGS_SS_APP_PGM_STG. Each education goal record must be associated with a valid application instance.
- IGS_AD_CODE_CLASSES: This table stores standardized code values used across the Admissions module. The relationship is through the column IGS_SS_AD_EDUGOA_STG.EDU_GOAL_ID, which references a valid code in IGS_AD_CODE_CLASSES, ensuring the educational goal is a system-approved value.
-
Table: IGS_SS_AD_EDUGOA_STG
12.2.2
product: IGS - Student System (Obsolete) , description: Staging table for applicant education goals post enrollment details for a self service admission application program instance , implementation_dba_data: Not implemented in this database ,