Search Results ss_adm_appl_id
Overview
The IGS_SS_AD_SEC_STAT table is a core data object within the Oracle E-Business Suite (EBS) Student System (SS), specifically under the IGS (iGrants) schema in releases 12.1.1 and 12.2.2. It functions as a checklist or tracking mechanism for the completion status of specific sections within an admissions application process. The table's primary role is to maintain a granular, per-section status record for a given applicant and application, enabling the system to monitor which parts of a complex application form or workflow have been completed. This supports conditional logic, progress dashboards, and validation rules within the admissions module.
Key Information Stored
The table stores a composite record keyed by application, person, and section, along with the corresponding status and standard audit columns. The critical columns are:
- SS_ADM_APPL_ID (NUMBER): The unique identifier for the admissions application, linking to the main application header.
- PERSON_ID (NUMBER): The identifier for the applicant, linking to the person master (e.g., IGS_PE_PERSON).
- SECTION (VARCHAR2): A code identifying a specific section or region of the admissions application (e.g., 'PERSONAL_DETAILS', 'ACADEMIC_HISTORY').
- COMPLETION_STATUS (VARCHAR2): The status of the specified section for this application (e.g., 'COMPLETE', 'INCOMPLETE', 'IN_PROGRESS').
- Standard WHO Columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN): Audit trail recording the user and timestamp of record creation and modification.
The table's primary key constraint, IGS_SS_AD_SEC_STAT_PK, enforces uniqueness on the combination of SS_ADM_APPL_ID, PERSON_ID, and SECTION.
Common Use Cases and Queries
A primary use case is generating an application completeness report to identify applicants with pending sections. For example, an admissions officer may query for all incomplete sections for a specific application number. The user's search for "ss_adm_appl_id" indicates a common need to filter or join data using this key identifier.
Sample Query 1: Check Status for a Specific Application
SELECT SECTION, COMPLETION_STATUS
FROM IGS.IGS_SS_AD_SEC_STAT
WHERE SS_ADM_APPL_ID = :APPL_ID AND PERSON_ID = :PERSON_ID
ORDER BY SECTION;
Sample Query 2: Find Applications with Any Incomplete Sections
SELECT DISTINCT SS_ADM_APPL_ID, PERSON_ID
FROM IGS.IGS_SS_AD_SEC_STAT
WHERE COMPLETION_STATUS != 'COMPLETE';
Sample Query 3: Data Integrity Check (Count of Sections per Application)
SELECT SS_ADM_APPL_ID, COUNT(*) AS SECTION_COUNT
FROM IGS.IGS_SS_AD_SEC_STAT
GROUP BY SS_ADM_APPL_ID;
Related Objects
Based on the provided metadata, the table's relationships are primarily defined by its primary key columns. It is logically a child table to the main admissions application header table (likely named IGS_SS_ADM_APPL or similar) via the SS_ADM_APPL_ID column. Similarly, it references a core person table via PERSON_ID. The unique index IGS_SS_AD_SEC_STAT_U1 on (SS_ADM_APPL_ID, PERSON_ID, SECTION) supports the primary key and enforces data integrity. The dependency information notes that an object named IGS_SS_AD_SEC_STAT under the APPS synonym references this table, indicating it is accessed via a public synonym for use within the application tier. There are no foreign key constraints documented in the provided excerpt, implying relationships are enforced at the application level.
-
APPS.IGS_AD_SS_GEN_001 dependencies on IGS_SS_AD_ACADIN_STG
12.1.1
-
APPS.IGS_AD_SS_GEN_001 dependencies on IGS_SS_AD_SEC_STAT
12.1.1
-
APPS.IGS_AD_SS_GEN_001 dependencies on IGS_SS_AD_APPINT_STG
12.1.1
-
APPS.IGS_AD_SS_GEN_001 dependencies on IGS_SS_ADM_APPL_STG
12.1.1
-
APPS.IGS_AD_SS_GEN_001 dependencies on IGS_SS_AD_SPLINT_STG
12.1.1
-
APPS.IGS_AD_SS_GEN_001 dependencies on IGS_SS_AD_UNITSE_STG
12.1.1
-
APPS.IGS_AD_SS_GEN_001 dependencies on IGS_SS_AD_SPLTAL_STG
12.1.1
-
APPS.IGS_AD_SS_GEN_001 dependencies on IGS_SS_APP_PGM_STG
12.1.1
-
APPS.IGS_AD_SS_GEN_001 dependencies on IGS_SS_AD_EDUGOA_STG
12.1.1
-
APPS.IGS_AD_SS_GEN_001 dependencies on IGS_SS_AD_OTHINS_STG
12.1.1
-
TABLE: IGS.IGS_SS_AD_SEC_STAT
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_SS_AD_SEC_STAT, object_name:IGS_SS_AD_SEC_STAT, status:VALID,
-
APPS.IGS_AD_SS_GEN_001 dependencies on IGS_SS_APP_REQ_STG
12.1.1
-
APPS.IGS_AD_SS_APPL_PGS_PKG dependencies on IGS_SS_ADM_APPL_STG
12.1.1
-
APPS.IGS_PRECREATE_APPL_PUB SQL Statements
12.1.1
-
TABLE: IGS.IGS_SS_AD_SPLINT_STG
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_SS_AD_SPLINT_STG, object_name:IGS_SS_AD_SPLINT_STG, status:VALID,
-
TABLE: IGS.IGS_SS_AD_SPLTAL_STG
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_SS_AD_SPLTAL_STG, object_name:IGS_SS_AD_SPLTAL_STG, status:VALID,
-
APPS.IGS_AD_SS_APPL_PGS_PKG dependencies on IGS_SS_AD_SEC_STAT
12.1.1
-
TABLE: IGS.IGS_SS_APPL_PERSTAT
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_SS_APPL_PERSTAT, object_name:IGS_SS_APPL_PERSTAT, status:VALID,
-
Table: IGS_SS_AD_SEC_STAT
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_SS_AD_SEC_STAT, object_name:IGS_SS_AD_SEC_STAT, status:VALID, product: IGS - Student System , description: Table for checklist , implementation_dba_data: IGS.IGS_SS_AD_SEC_STAT ,
-
TABLE: IGS.IGS_SS_ADMAPPL_USES
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_SS_ADMAPPL_USES, object_name:IGS_SS_ADMAPPL_USES, status:VALID,
-
TABLE: IGS.IGS_SS_ADM_APPL_STG
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_SS_ADM_APPL_STG, object_name:IGS_SS_ADM_APPL_STG, status:VALID,
-
TABLE: IGS.IGS_SS_AD_APPINT_STG
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_SS_AD_APPINT_STG, object_name:IGS_SS_AD_APPINT_STG, status:VALID,
-
TABLE: IGS.IGS_SS_APP_REQ_STG
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_SS_APP_REQ_STG, object_name:IGS_SS_APP_REQ_STG, status:VALID,
-
Table: IGS_SS_ADM_APPL_STG_ALL
12.1.1
product: IGS - Student System , implementation_dba_data: Not implemented in this database ,
-
TABLE: IGS.IGS_SS_ADM_APPL_STG_ALL_OLD
12.1.1
owner:IGS, object_type:TABLE, object_name:IGS_SS_ADM_APPL_STG_ALL_OLD, status:VALID,
-
TABLE: IGS.IGS_SS_AD_ACADIN_STG
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_SS_AD_ACADIN_STG, object_name:IGS_SS_AD_ACADIN_STG, status:VALID,
-
Table: IGS_SS_ADM_APPL_STG_ALL
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_SS_AD_SEC_STAT
12.2.2
product: IGS - Student System (Obsolete) , description: Table for checklist , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_PRECREATE_APPL_PUB dependencies on IGS_SS_APP_REQ_STG
12.1.1
-
Table: IGS_SS_ADM_APPL_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_SS_ADM_APPL_ALL, object_name:IGS_SS_ADM_APPL_ALL, status:VALID, product: IGS - Student System , description: Stores all the details of the admission applications received online , implementation_dba_data: IGS.IGS_SS_ADM_APPL_ALL ,
-
Table: IGS_SS_ADM_APPL_ALL
12.2.2
product: IGS - Student System (Obsolete) , description: Stores all the details of the admission applications received online , implementation_dba_data: Not implemented in this database ,
-
TABLE: IGS.IGS_SS_AD_OTHINS_STG
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_SS_AD_OTHINS_STG, object_name:IGS_SS_AD_OTHINS_STG, status:VALID,
-
Table: IGS_SS_ADM_APPL_STG
12.2.2
product: IGS - Student System (Obsolete) , description: This table describes admission of applicant to institution , implementation_dba_data: Not implemented in this database ,
-
TABLE: IGS.IGS_SS_ADM_APPL_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_SS_ADM_APPL_ALL, object_name:IGS_SS_ADM_APPL_ALL, status:VALID,
-
View: IGS_SS_APPL_PERSTAT_V
12.2.2
product: IGS - Student System (Obsolete) , description: View to select the Personal Statements for the Applications from the Self Service staging table , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_AD_SS_GEN_001 SQL Statements
12.1.1
-
VIEW: APPS.IGS_SS_APPL_PERSTAT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_SS_APPL_PERSTAT_V, object_name:IGS_SS_APPL_PERSTAT_V, status:VALID,
-
APPS.IGS_AD_SS_APPL_PGS_PKG SQL Statements
12.1.1
-
Table: IGS_SS_ADM_APPL_STG
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_SS_ADM_APPL_STG, object_name:IGS_SS_ADM_APPL_STG, status:VALID, product: IGS - Student System , description: This table describes admission of applicant to institution , implementation_dba_data: IGS.IGS_SS_ADM_APPL_STG ,
-
VIEW: APPS.IGS_SS_ADM_APPL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_SS_ADM_APPL, object_name:IGS_SS_ADM_APPL, status:VALID,
-
TABLE: IGS.IGS_SS_APP_PGM_STG_ALL_OLD
12.1.1
owner:IGS, object_type:TABLE, object_name:IGS_SS_APP_PGM_STG_ALL_OLD, status:VALID,
-
TABLE: IGS.IGS_SS_ADMAPPL_PGM
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_SS_ADMAPPL_PGM, object_name:IGS_SS_ADMAPPL_PGM, status:VALID,
-
View: IGS_SS_APPL_PERSTAT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_SS_APPL_PERSTAT_V, object_name:IGS_SS_APPL_PERSTAT_V, status:VALID, product: IGS - Student System , description: View to select the Personal Statements for the Applications from the Self Service staging table , implementation_dba_data: APPS.IGS_SS_APPL_PERSTAT_V ,
-
APPS.IGS_AD_SS_GEN_001 dependencies on IGS_SS_APPL_PERSTAT
12.1.1
-
View: IGS_SS_ADM_APPL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_SS_ADM_APPL, object_name:IGS_SS_ADM_APPL, status:VALID, product: IGS - Student System , description: An Admission Application Online View which stores all admission applications received online. , implementation_dba_data: APPS.IGS_SS_ADM_APPL ,
-
View: IGS_SS_ADM_APPL
12.2.2
product: IGS - Student System (Obsolete) , description: An Admission Application Online View which stores all admission applications received online. , implementation_dba_data: Not implemented in this database ,
-
TABLE: IGS.IGS_SS_APP_PGM_STG
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_SS_APP_PGM_STG, object_name:IGS_SS_APP_PGM_STG, status:VALID,
-
APPS.IGS_PRECREATE_APPL_PUB dependencies on IGS_AD_SCHL_APLY_TO
12.1.1
-
APPS.IGS_AD_SS_GEN_001 dependencies on IGS_AD_PRCS_CAT_STEP
12.1.1
-
APPS.IGS_AD_SS_APPL_PGS_PKG dependencies on IGS_AD_SS_APPL_PGS
12.1.1