Search Results unit_section_status
Overview
IGS.IGS_EN_USEC_STAT_DSP is a configuration table within the Oracle E-Business Suite IGS (Intelligent Grants System / Student Systems) schema, deployed in the APPS_TS_TX_DATA tablespace. Its documented purpose is to hold the set of unit section statuses that may be presented to a self-service user during enrollment, together with a flag indicating whether each status is currently displayed. In practical terms, the table functions as a display-filter or allow-list that governs which enrollment records become visible through the self-service enrollment flow.
The object is classified as VALID in the ETRM 12.1.1 documentation and is registered under FND Design Data as IGS.IGS_EN_USEC_STAT_DSP. Because it exposes an APPS synonym (APPS.IGS_EN_USEC_STAT_DSP), it is intended to be queried and maintained through the APPS schema rather than the IGS owner directly. The heuristic Data Vault classification mined from the foreign-key structure is standalone; from a modeling perspective this suggests the row set behaves as an independent reference or lookup set (a hub-like reference entity) with no identifying links to other tables. The absence of outbound foreign keys confirms that the table carries its own business key rather than deriving identity from a parent.
Key Information Stored
The table is narrow, containing seven documented columns. The most important are:
- UNIT_SECTION_STATUS (VARCHAR2, 30) — the descriptive code for a unit section status. This column is mandatory, is the documented primary key component via IGS_EN_USEC_STAT_DSP_PK, and is also the column of the unique index IGS_EN_USEC_STAT_DSP_U1. It therefore serves simultaneously as the surrogate primary key and as the business-key candidate, ensuring one row per distinct status value.
- DISPLAYED (VARCHAR2) — the operational control flag indicating whether unit sections bearing the given status will be displayed for self-service enrollment. This is the column most frequently filtered or updated by administrators.
- CREATED_BY (NUMBER, 15), CREATION_DATE (DATE), LAST_UPDATED_BY (NUMBER, 15), LAST_UPDATE_DATE (DATE), LAST_UPDATE_LOGIN (NUMBER, 15) — the standard WHO audit columns recording row creation and last modification metadata.
No non-key attribute beyond DISPLAYED is functionally dependent on UNIT_SECTION_STATUS, which reinforces the lightweight, reference-data character of the table.
Common Use Cases and Queries
The primary use case is determining the enrollment-visible status set. A typical reporting query retrieves the active statuses as follows:
SELECT UNIT_SECTION_STATUS, DISPLAYED FROM IGS.IGS_EN_USEC_STAT_DSP WHERE DISPLAYED = 'Y';— returns the statuses exposed to self-service users.SELECT UNIT_SECTION_STATUS, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE FROM IGS.IGS_EN_USEC_STAT_DSP ORDER BY UNIT_SECTION_STATUS;— provides an audit view of configuration changes.- A join pattern against enrollment records filters candidate sections: select unit section rows where the section's status exists in this table with DISPLAYED = 'Y'.
Administrators use direct DML against the APPS synonym to toggle the DISPLAYED flag when enrollment windows open or close, and developers reference the table to validate status-code membership.
Related Objects
The documented dependency data records that IGS_EN_USEC_STAT_DSP does not reference any other database object and is referenced only by its APPS synonym, APPS.IGS_EN_USEC_STAT_DSP. Consequently, the relationship set is intentionally minimal:
- APPS.IGS_EN_USEC_STAT_DSP — the synonym through which the table is accessed.
- IGS_EN_USEC_STAT_DSP_PK — primary key constraint on UNIT_SECTION_STATUS.
- IGS_EN_USEC_STAT_DSP_U1 — unique index on UNIT_SECTION_STATUS in APPS_TS_TX_IDX.
Because the object is standalone, join semantics with enrollment tables such as unit section offerings are implied by the shared UNIT_SECTION_STATUS value rather than enforced by declared foreign keys. Implementers should treat the status code as the logical join column and confirm referential expectations against the broader IGS enrollment model.
-
Lookup Type: UNIT_SECTION_STATUS
12.1.1
product: IGS - Student System , meaning: Unit Section Status , description: Unit Section Status ,
-
Lookup Type: UNIT_SECTION_STATUS
12.2.2
product: IGS - Student System (Obsolete) , meaning: Unit Section Status , description: Unit Section Status ,
-
TABLE: IGS.IGS_EN_USEC_STAT_DSP
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_EN_USEC_STAT_DSP, object_name:IGS_EN_USEC_STAT_DSP, status:VALID,
-
VIEW: APPS.IGS_EN_USEC_STAT_DSP_V
12.1.1
-
View: IGS_EN_USEC_STAT_DSP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_USEC_STAT_DSP_V, object_name:IGS_EN_USEC_STAT_DSP_V, status:VALID, product: IGS - Student System , description: Contains the Unit section statuses what are to be displayed to the self service user for enrollment based on whether displayed is set to yes/no. , implementation_dba_data: APPS.IGS_EN_USEC_STAT_DSP_V ,
-
View: IGS_EN_USEC_STAT_DSP_V
12.2.2
product: IGS - Student System (Obsolete) , description: Contains the Unit section statuses what are to be displayed to the self service user for enrollment based on whether displayed is set to yes/no. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PS_SCH_USEC_INT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_SCH_USEC_INT, object_name:IGS_PS_SCH_USEC_INT, status:VALID, product: IGS - Student System , description: Interface View to capture the Scheduler Interface Unit Section Data , implementation_dba_data: APPS.IGS_PS_SCH_USEC_INT ,
-
VIEW: APPS.IGS_PS_UNIT_OFR_OPT_SV
12.1.1
-
View: IGS_PS_SCH_USEC_INT
12.2.2
product: IGS - Student System (Obsolete) , description: Interface View to capture the Scheduler Interface Unit Section Data , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_PS_UNIT_OFR_OPT_V
12.1.1
-
View: IGS_PS_UNIT_OFR_OPT_SV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_OFR_OPT_SV, object_name:IGS_PS_UNIT_OFR_OPT_SV, status:VALID, product: IGS - Student System , description: Secured View for the IGS_PS_UNIT_OFR_OPT_ALL table , implementation_dba_data: APPS.IGS_PS_UNIT_OFR_OPT_SV ,
-
View: IGS_PS_UNIT_OFR_OPT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_OFR_OPT_V, object_name:IGS_PS_UNIT_OFR_OPT_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_UNIT_OFR_OPT_V ,
-
VIEW: APPS.IGS_PS_SCH_USEC_INT
12.1.1
-
View: IGS_PS_UNIT_OFR_OPT_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PS_UNIT_OFR_OPT_SV
12.2.2
product: IGS - Student System (Obsolete) , description: Secured View for the IGS_PS_UNIT_OFR_OPT_ALL table , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PS_UNIT_OFR_OPT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_OFR_OPT, object_name:IGS_PS_UNIT_OFR_OPT, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_UNIT_OFR_OPT ,
-
VIEW: APPS.IGS_EN_USEC_STAT_DSP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_USEC_STAT_DSP_V, object_name:IGS_EN_USEC_STAT_DSP_V, status:VALID,
-
Table: IGS_EN_USEC_STAT_DSP
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_EN_USEC_STAT_DSP, object_name:IGS_EN_USEC_STAT_DSP, status:VALID, product: IGS - Student System , description: Contains the Unit section statuses what are to be displayed to the self service user for enrollment based on whether displayed is set to yes/no. , implementation_dba_data: IGS.IGS_EN_USEC_STAT_DSP ,
-
View: IGS_PS_UNIT_OFR_OPT
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_EN_USEC_STAT_DSP
12.2.2
product: IGS - Student System (Obsolete) , description: Contains the Unit section statuses what are to be displayed to the self service user for enrollment based on whether displayed is set to yes/no. , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_EN_USEC_STAT_DSP_PKG SQL Statements
12.1.1
-
VIEW: APPS.IGS_PS_UNIT_OFR_OPT
12.1.1
-
VIEW: APPS.IGS_SS_USEC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_SS_USEC_V, object_name:IGS_SS_USEC_V, status:VALID,
-
View: IGS_PS_USEC_OCCURS_FULL_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_PS_SCH_USEC_INT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_SCH_USEC_INT, object_name:IGS_PS_SCH_USEC_INT, status:VALID,
-
View: IGS_PS_USEC_OCCURS_FULL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_USEC_OCCURS_FULL_V, object_name:IGS_PS_USEC_OCCURS_FULL_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_USEC_OCCURS_FULL_V ,
-
VIEW: APPS.IGS_PS_USEC_OCCURS_FULL_V
12.1.1
-
VIEW: APPS.IGS_PS_UNIT_OFR_OPT_PE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_OFR_OPT_PE_V, object_name:IGS_PS_UNIT_OFR_OPT_PE_V, status:VALID,
-
VIEW: APPS.IGS_SS_EN_ENROLL_CART_RSLT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_SS_EN_ENROLL_CART_RSLT_V, object_name:IGS_SS_EN_ENROLL_CART_RSLT_V, status:VALID,
-
View: IGS_PS_UNIT_OFR_OPT_PE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_OFR_OPT_PE_V, object_name:IGS_PS_UNIT_OFR_OPT_PE_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_UNIT_OFR_OPT_PE_V ,
-
View: IGS_SS_USEC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_SS_USEC_V, object_name:IGS_SS_USEC_V, status:VALID, product: IGS - Student System , description: This View stores the Unit Sections for self service applications. , implementation_dba_data: APPS.IGS_SS_USEC_V ,
-
VIEW: APPS.IGS_PS_USEC_OCCURS_FULL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_USEC_OCCURS_FULL_V, object_name:IGS_PS_USEC_OCCURS_FULL_V, status:VALID,
-
View: IGS_PS_UNIT_OFR_OPT_PE_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_SS_USEC_V
12.2.2
product: IGS - Student System (Obsolete) , description: This View stores the Unit Sections for self service applications. , implementation_dba_data: Not implemented in this database ,
-
TABLE: IGS.IGS_PS_SCH_USEC_INT_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_SCH_USEC_INT_ALL, object_name:IGS_PS_SCH_USEC_INT_ALL, status:VALID,
-
APPS.IGS_EN_REINSTATE_PKG SQL Statements
12.1.1
-
View: IGS_SS_EN_ENROLL_CART_RSLT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_SS_EN_ENROLL_CART_RSLT_V, object_name:IGS_SS_EN_ENROLL_CART_RSLT_V, status:VALID, product: IGS - Student System , description: Enrollment Worksheet Result , implementation_dba_data: APPS.IGS_SS_EN_ENROLL_CART_RSLT_V ,
-
View: IGS_SS_EN_ENROLL_CART_RSLT_V
12.2.2
product: IGS - Student System (Obsolete) , description: Enrollment Worksheet Result , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_PS_UNIT_OFR_OPT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_OFR_OPT_V, object_name:IGS_PS_UNIT_OFR_OPT_V, status:VALID,
-
PACKAGE BODY: APPS.IGS_EN_USEC_STAT_DSP_PKG
12.1.1
-
VIEW: APPS.IGS_PS_UNIT_OFR_OPT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_OFR_OPT, object_name:IGS_PS_UNIT_OFR_OPT, status:VALID,
-
View: IGS_SS_EN_SUA_DTLS_V
12.2.2
product: IGS - Student System (Obsolete) , description: It will display all the sections for the student , implementation_dba_data: Not implemented in this database ,
-
View: IGS_SS_EN_SUA_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_SS_EN_SUA_DTLS_V, object_name:IGS_SS_EN_SUA_DTLS_V, status:VALID, product: IGS - Student System , description: It will display all the sections for the student , implementation_dba_data: APPS.IGS_SS_EN_SUA_DTLS_V ,
-
VIEW: APPS.IGS_PS_UNIT_OFR_OPT_SV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_OFR_OPT_SV, object_name:IGS_PS_UNIT_OFR_OPT_SV, status:VALID,
-
TABLE: IGS.IGS_PS_UNIT_OFR_OPT_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_UNIT_OFR_OPT_ALL, object_name:IGS_PS_UNIT_OFR_OPT_ALL, status:VALID,
-
APPS.IGS_PS_UNIT_OFR_OPT_PKG SQL Statements
12.1.1
-
APPS.IGS_PS_VALIDATE_LGCY_PKG SQL Statements
12.1.1
-
VIEW: APPS.IGS_SS_EN_SUA_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_SS_EN_SUA_DTLS_V, object_name:IGS_SS_EN_SUA_DTLS_V, status:VALID,
-
APPS.IGS_EN_GEN_017 SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_PS_UNIT_OFR_OPT_PKG
12.1.1