Search Results igs_pe_nonimg_stat
Overview
IGS_PE_NONIMG_STAT is a transactional table in the IGS (Student System) product family of Oracle E-Business Suite, valid in both 12.1.1 and 12.2.2. It captures status-tracking information associated with non-image forms processed by the institution. In the ETRM metadata this object is classified as a link table under the heuristic Data Vault model — a suggestion that it resolves a many-to-many or event-based relationship between a form definition and a point-in-time status action, rather than standing alone as an independent hub or satellite. In practice, the table records the lifecycle of each non-image form: when an action was taken, what type of action it was, and the program period and termination context relevant to that form. The table resides in the IGS schema and is owned by the Student System footprint, meaning its use is tightly coupled to the higher-education enrollment and admissions flows delivered with the Oracle Student System.
Key Information Stored
The documented physical schema contains 15 columns. The most operationally significant are:
- NONIMG_STAT_ID — the surrogate primary key (IGS_PE_NONIMG_STAT_PK). It uniquely identifies each status row and is the column to use in joins to child or dependent records.
- NONIMG_FORM_ID — foreign key to IGS_PE_NONIMG_FORM. It ties each status record back to the specific non-image form it describes.
- ACTION_TYPE and ACTION_DATE — together with NONIMG_FORM_ID these form the business-key candidate IGS_PE_NONIMG_STAT_U1. ACTION_TYPE identifies the nature of the status event, while ACTION_DATE timestamps it.
- PRGM_START_DATE and PRGM_END_DATE — define the program period the form status applies to.
- TERMINATION_REASON — records the reason associated with a termination action, where applicable.
- REMARKS — free-text annotation for the status record.
- CANCEL_FLAG and PRINT_FLAG — indicator columns controlling cancellation status and whether the form is flagged for printing.
- CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN — the standard EBS audit columns, identifying who created and last modified the row and when.
The distinction between the surrogate key (NONIMG_STAT_ID) and the unique business key (NONIMG_FORM_ID, ACTION_TYPE, ACTION_DATE) is important: the surrogate key should be used for referential joins, while the unique index enforces that a given form cannot have two identical action-type-and-date combinations.
Common Use Cases and Queries
The table is most commonly queried to report on the status history of non-image forms — for example, tracking admissions or enrollment forms through submission, processing, printing, and termination stages. A typical pattern joins back to the form definition:
- Status history per form:
SELECT s.NONIMG_STAT_ID, s.ACTION_TYPE, s.ACTION_DATE, s.CANCEL_FLAG FROM IGS.IGS_PE_NONIMG_STAT s WHERE s.NONIMG_FORM_ID = :form_id ORDER BY s.ACTION_DATE; - Terminated forms within a period: filter on
TERMINATION_REASON IS NOT NULLandPRGM_END_DATErange. - Print-queue reporting: filter on
PRINT_FLAG = 'Y'andCANCEL_FLAG = 'N'to identify forms still awaiting output. - Audit and reconciliation: expose CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, and LAST_UPDATE_DATE to show who touched a form status and when.
Because the table is an event-style link, replicated reporting schemas often use it as the fact source for form-lifecycle dashboards.
Related Objects
- IGS_PE_NONIMG_FORM — the parent object referenced twice via NONIMG_FORM_ID. This is the primary join target and the most significant related table.
- IGS_PE_NONIMG_STAT_PK — the primary key constraint/index on NONIMG_STAT_ID.
- IGS_PE_NONIMG_STAT_U1 — the unique index on (NONIMG_FORM_ID, ACTION_TYPE, ACTION_DATE) enforcing the business key.
- Standard EBS audit and concurrent-program objects that consume CREATED_BY / LAST_UPDATED_BY values (for example, FND_USER) are commonly joined for name resolution in reporting.
Where the ETRM extract is limited, the FK evidence points to IGS_PE_NONIMG_FORM as the sole documented parent, so any wider relationship model should be validated against the site's actual IGS configuration before being relied upon.
-
Table: IGS_PE_NONIMG_STAT
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PE_NONIMG_STAT, object_name:IGS_PE_NONIMG_STAT, status:VALID, product: IGS - Student System , description: This table is used to gather the information related to the student status , implementation_dba_data: IGS.IGS_PE_NONIMG_STAT ,
-
Table: IGS_PE_NONIMG_STAT
12.2.2
product: IGS - Student System (Obsolete) , description: This table is used to gather the information related to the student status , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_PE_NONIMG_FORM
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PE_NONIMG_FORM, object_name:IGS_PE_NONIMG_FORM, status:VALID, product: IGS - Student System , description: This table is to be used for storing the information of students that fall into the non-immigrant status based on Visa Type. The information here will be passed along to SEVIS. , implementation_dba_data: IGS.IGS_PE_NONIMG_FORM ,
-
APPS.IGS_PE_NONIMG_STAT_PKG SQL Statements
12.1.1
-
SYNONYM: APPS.IGS_PE_NONIMG_STAT
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_PE_NONIMG_STAT, status:VALID,
-
Table: IGS_PE_NONIMG_FORM
12.2.2
product: IGS - Student System (Obsolete) , description: This table is to be used for storing the information of students that fall into the non-immigrant status based on Visa Type. The information here will be passed along to SEVIS. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PE_NONIMG_STAT_V
12.2.2
product: IGS - Student System (Obsolete) , description: View for IGS_PE_NONIMG_STAT , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PE_NONIMG_STAT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_NONIMG_STAT_V, object_name:IGS_PE_NONIMG_STAT_V, status:VALID, product: IGS - Student System , description: View for IGS_PE_NONIMG_STAT , implementation_dba_data: APPS.IGS_PE_NONIMG_STAT_V ,
-
VIEW: APPS.IGS_PE_NONIMG_STAT_V
12.1.1
-
TABLE: IGS.IGS_PE_NONIMG_STAT
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PE_NONIMG_STAT, object_name:IGS_PE_NONIMG_STAT, status:VALID,
-
PACKAGE BODY: APPS.IGS_SV_UTIL
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_SV_UTIL, status:VALID,
-
PACKAGE BODY: APPS.IGS_PE_NONIMG_STAT_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_PE_NONIMG_STAT_PKG, status:VALID,
-
PACKAGE BODY: APPS.IGS_SV_BATCH_PROCESS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_SV_BATCH_PROCESS_PKG, status:VALID,
-
PACKAGE BODY: APPS.IGS_PE_NONIMG_STAT_PKG
12.1.1
-
PACKAGE BODY: APPS.IGS_SV_NI_BATCH_PROCESS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_SV_NI_BATCH_PROCESS_PKG, status:VALID,
-
VIEW: APPS.IGS_PE_NONIMG_STAT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_NONIMG_STAT_V, object_name:IGS_PE_NONIMG_STAT_V, status:VALID,
-
APPS.IGS_SV_UTIL SQL Statements
12.1.1
-
APPS.IGS_PE_NONIMG_STAT_PKG dependencies on IGS_PE_NONIMG_STAT
12.1.1
-
APPS.IGS_SV_NI_BATCH_PROCESS_PKG dependencies on IGS_PE_NONIMG_STAT
12.1.1
-
APPS.IGS_SV_UTIL dependencies on IGS_PE_NONIMG_STAT
12.1.1
-
APPS.IGS_SV_BATCH_PROCESS_PKG dependencies on IGS_PE_NONIMG_STAT
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
APPS.IGS_SV_NI_BATCH_PROCESS_PKG SQL Statements
12.1.1
-
APPS.IGS_SV_BATCH_PROCESS_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_SV_UTIL
12.1.1
-
12.1.1 DBA Data
12.1.1
-
APPS.IGS_PE_NONIMG_STAT_PKG dependencies on IGS_SC_GEN_001
12.1.1
-
APPS.IGS_PE_NONIMG_STAT_PKG dependencies on IGS_PE_NONIMG_STAT_PKG
12.1.1
-
APPS.IGS_SV_NI_BATCH_PROCESS_PKG dependencies on IGS_LOOKUP_VALUES
12.1.1
-
APPS.IGS_SV_BATCH_PROCESS_PKG dependencies on IGS_LOOKUP_VALUES
12.1.1
-
APPS.IGS_SV_UTIL dependencies on IGS_PE_NONIMG_FORM
12.1.1
-
APPS.IGS_PE_NONIMG_STAT_PKG dependencies on FND_MESSAGE
12.1.1
-
APPS.IGS_SV_NI_BATCH_PROCESS_PKG dependencies on HZ_PARTIES
12.1.1
-
APPS.IGS_SV_BATCH_PROCESS_PKG dependencies on HZ_PARTIES
12.1.1
-
APPS.IGS_SV_NI_BATCH_PROCESS_PKG dependencies on IGS_SV_PRGMS_INFO
12.1.1
-
PACKAGE BODY: APPS.IGS_SV_NI_BATCH_PROCESS_PKG
12.1.1
-
APPS.IGS_SV_BATCH_PROCESS_PKG dependencies on IGS_SV_PRGMS_INFO
12.1.1
-
PACKAGE BODY: APPS.IGS_SV_BATCH_PROCESS_PKG
12.1.1
-
APPS.IGS_SV_NI_BATCH_PROCESS_PKG dependencies on IGS_PE_NONIMG_FORM
12.1.1
-
APPS.IGS_SV_BATCH_PROCESS_PKG dependencies on IGS_PE_NONIMG_FORM
12.1.1
-
12.1.1 DBA Data
12.1.1
-
eTRM - IGS Tables and Views
12.1.1
description: Holds applicant whose records are wrongly available . It is recommended that such applicant records are deleted from the system . It synchronizes with UCAS view 'ivStarW'. ,
-
eTRM - IGS Tables and Views
12.1.1
description: Holds applicant whose records are wrongly available . It is recommended that such applicant records are deleted from the system . It synchronizes with UCAS view 'ivStarW'. ,