Search Results igs_gr_stat
Overview
IGS_GR_STAT is a reference (lookup) table in the IGS — Student System product family of Oracle E-Business Suite. As documented in the ETRM metadata, the entity "describes the statuses of a graduand" — that is, it holds the discrete lifecycle states that a graduating student (graduand) may occupy during the graduation process. Typical states in an academic graduation workflow include Applied, Eligible, Approved, Conferral Pending, Conferred, and Withdrawn, though the actual coded values are institution-defined and maintained as setup data.
The table resides in the IGS schema, is marked VALID, and carries 9 documented columns in the 12.1.1 physical schema. It is a pure validation/reference table: transactional graduation records point to a row in IGS_GR_STAT rather than storing a redundant description. The heuristic Data Vault classification mined from the foreign-key structure is standalone, which is consistent with its role as a low-volume code table. Where an integration or warehouse model is required, the most natural treatment is a small satellite-like dimension anchored on GRADUAND_STATUS, since there are no outbound foreign keys and the table is not itself a hub or a link.
Key Information Stored
- GRADUAND_STATUS — the primary key column and the business key candidate. The unique index IGS_GR_STAT_U1 is defined on this column alone, and the primary key constraint IGS_GR_STAT_PK is also defined on GRADUAND_STATUS. It stores the internal status code used throughout the graduation subsystem.
- DESCRIPTION — the user-facing, translatable text for the status, displayed in forms, LOVs, and reports.
- S_GRADUAND_STATUS — the seeded/system status indicator, distinguishing delivered Oracle statuses from institution-defined ones.
- CLOSED_IND — indicates whether the status is terminal (closed) for the graduand lifecycle; useful for filtering active versus completed graduands.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — the standard Oracle EBS WHO columns providing audit lineage and supporting concurrent-program and audit reporting.
Because GRADUAND_STATUS is both the primary key and the sole unique business key, there is no separate surrogate identifier in the documented schema; the code itself is the surrogate. The remaining attributes are descriptive and audit-only.
Common Use Cases and Queries
The most frequent requirement is resolving a graduand status code to its description for operational and management reporting, and populating status LOVs in graduation maintenance forms.
- Description lookup:
SELECT description FROM igs_gr_stat WHERE graduand_status = :status_code; - Active status list for LOVs:
SELECT graduand_status, description FROM igs_gr_stat WHERE NVL(closed_ind,'N') = 'N' ORDER BY description; - Status distribution reporting: join the status table to the graduand transaction table to count graduands per status.
- Setup audit: identify seeded versus institution-defined statuses using S_GRADUAND_STATUS, and report recently modified rows using LAST_UPDATE_DATE.
Related Objects
The metadata documents no outbound foreign keys from IGS_GR_STAT, so it is a dependent reference table rather than a child of another entity. The objects listed below are the typical referencing and companion tables in the IGS — Student System graduation area; join on GRADUAND_STATUS in each case.
- IGS_GR_GRADUANDS (or the equivalent graduand master table) — holds the graduand records and stores GRADUAND_STATUS as a foreign key to this table.
- IGS_GR_GRADUAND_STAT_HIST — status history for graduands, retaining prior GRADUAND_STATUS values.
- IGS_GR_APPLICANTS / graduation application tables — carry the current status reference through the conferral cycle.
- IGS_GR_* setup tables — validation and lookup tables sharing the same S_* and CLOSED_IND conventions.
- FND_LOOKUPS / IGS lookups — related flexfield and lookup infrastructure used for translated descriptions.
- APIs and concurrent programs in the IGS graduation module — read GRADUAND_STATUS to enforce valid state transitions.
Any query or interface that consumes a graduand status should join to IGS_GR_STAT on GRADUAND_STATUS to obtain the DESCRIPTION and CLOSED_IND semantics.
-
Table: IGS_GR_STAT
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_GR_STAT, object_name:IGS_GR_STAT, status:VALID, product: IGS - Student System , description: This entity describes the statuses of a graduand. , implementation_dba_data: IGS.IGS_GR_STAT ,
-
Table: IGS_GR_STAT
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes the statuses of a graduand. , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_GR_STAT_PKG SQL Statements
12.1.1
-
TABLE: IGS.IGS_GR_STAT
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_GR_STAT, object_name:IGS_GR_STAT, status:VALID,
-
SYNONYM: APPS.IGS_GR_STAT
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_GR_STAT, status:VALID,
-
APPS.IGS_GR_VAL_GR SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_GR_STAT_PKG
12.1.1
-
APPS.IGS_PR_VAL_SCA SQL Statements
12.1.1
-
VIEW: APPS.IGS_GR_GRADUATE_REGISTER_RPT_V
12.1.1
-
PACKAGE: APPS.IGS_GR_GEN_002
12.1.1
owner:APPS, object_type:PACKAGE, object_name:IGS_GR_GEN_002, status:VALID,
-
PACKAGE BODY: APPS.IGS_PR_VAL_SCA
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_PR_VAL_SCA, status:VALID,
-
PACKAGE: APPS.IGS_GR_VAL_GR
12.1.1
owner:APPS, object_type:PACKAGE, object_name:IGS_GR_VAL_GR, status:VALID,
-
APPS.IGS_GR_GRD_LGCY_PUB SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_GR_STAT_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_GR_STAT_PKG, status:VALID,
-
PACKAGE BODY: APPS.IGS_GR_GEN_001
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_GR_GEN_001, status:VALID,
-
PACKAGE BODY: APPS.IGS_GR_VAL_GAC
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_GR_VAL_GAC, status:VALID,
-
PACKAGE BODY: APPS.IGS_GR_VAL_GR
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_GR_VAL_GR, status:VALID,
-
PACKAGE BODY: APPS.IGS_GR_GRD_LGCY_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_GR_GRD_LGCY_PUB, status:VALID,
-
PACKAGE BODY: APPS.IGS_AS_PRC_TRANSCRPT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AS_PRC_TRANSCRPT, status:VALID,
-
PACKAGE BODY: APPS.IGS_GR_GEN_002
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_GR_GEN_002, status:VALID,
-
View: IGS_GR_GRADUATE_REGISTER_RPT_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_GR_GRADUATE_REGISTER_RPT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_GR_GRADUATE_REGISTER_RPT_V, object_name:IGS_GR_GRADUATE_REGISTER_RPT_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_GR_GRADUATE_REGISTER_RPT_V ,
-
PACKAGE BODY: APPS.IGS_AS_SS_DOC_REQUEST
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AS_SS_DOC_REQUEST, status:VALID,
-
PACKAGE BODY: APPS.IGS_EN_NSC_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_EN_NSC_PKG, status:VALID,
-
APPS.IGS_GR_GEN_001 SQL Statements
12.1.1
-
APPS.IGS_GR_GEN_002 SQL Statements
12.1.1
-
VIEW: APPS.IGS_GR_GRADUATE_REGISTER_RPT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_GR_GRADUATE_REGISTER_RPT_V, object_name:IGS_GR_GRADUATE_REGISTER_RPT_V, status:VALID,
-
APPS.IGS_GR_VAL_GAC SQL Statements
12.1.1
-
APPS.IGS_EN_NSC_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_GR_VAL_GR
12.1.1
-
PACKAGE BODY: APPS.IGS_PR_VAL_SCA
12.1.1
-
APPS.IGS_PR_VAL_SCA dependencies on IGS_GR_STAT
12.1.1
-
PACKAGE BODY: APPS.IGS_GR_GEN_002
12.1.1
-
APPS.IGS_GR_VAL_GR dependencies on IGS_GR_STAT
12.1.1
-
APPS.IGS_GR_VAL_GAC dependencies on IGS_GR_STAT
12.1.1
-
APPS.IGS_AS_PRC_TRANSCRPT dependencies on IGS_GR_STAT
12.1.1
-
APPS.IGS_GR_GEN_002 dependencies on IGS_GR_STAT
12.1.1
-
APPS.IGS_GR_GEN_002 dependencies on IGS_GR_STAT
12.1.1
-
APPS.IGS_GR_VAL_GR dependencies on IGS_GR_STAT
12.1.1
-
APPS.IGS_AS_SS_DOC_REQUEST dependencies on IGS_GR_STAT
12.1.1
-
APPS.IGS_EN_NSC_PKG dependencies on IGS_GR_STAT
12.1.1
-
APPS.IGS_GR_STAT_PKG dependencies on IGS_GR_STAT
12.1.1
-
APPS.IGS_GR_GRD_LGCY_PUB dependencies on IGS_GR_STAT
12.1.1
-
APPS.IGS_GR_GEN_001 dependencies on IGS_GR_STAT
12.1.1
-
PACKAGE BODY: APPS.IGS_GR_GEN_001
12.1.1
-
12.1.1 DBA Data
12.1.1
-
APPS.IGS_AS_PRC_TRANSCRPT SQL Statements
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