Search Results unit_type_id
Overview
The IGS_PS_UNIT_TYPE_LVL table is a core reference table within the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2, specifically for the Oracle Student Management (OSM) or Campus Solutions modules under the IGS schema. It functions as a master data repository for defining and managing the academic hierarchy levels associated with unit types. A unit type typically categorizes a course or subject (e.g., lecture, lab, tutorial), and this table defines the permissible academic levels (e.g., Undergraduate, Postgraduate, Doctoral) to which those unit types can be assigned. This ensures data integrity and enforces valid combinations when structuring academic programs and their constituent units within the system.
Key Information Stored
The table's structure is designed to maintain a controlled list of level codes with descriptive context and lifecycle status. The primary and critical columns are:
- UNIT_TYPE_ID (NUMBER): The system-generated primary key (PK), uniquely identifying each record. It is populated by the sequence IGS_PS_UNIT_TYPE_LVL_S.
- LEVEL_CODE (VARCHAR2(10)): A unique, user-defined code representing the academic level (e.g., 'UG', 'PG'). This column is enforced by a unique index (IGS_PS_UNIT_TYPE_LVL_U2).
- DESCRIPTION (VARCHAR2(80)): The full textual description of the level code for reporting and user interfaces.
- CLOSED_IND (VARCHAR2(1)): A flag indicating the record's active status. A value signifying 'Y' typically means the level code is closed for future association with new units, while 'N' indicates it is available for use.
- Standard WHO Columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN): Audit columns tracking the creation and modification history of each record.
Common Use Cases and Queries
This table is primarily referenced in setups and validation routines. A common use case is during the configuration of an academic unit or program, where the system validates that the selected unit type is permissible for the intended academic level. For reporting and administration, queries often retrieve the active list of levels or check associations. A fundamental query to retrieve all active level codes is:
SELECT UNIT_TYPE_ID, LEVEL_CODE, DESCRIPTION FROM IGS.IGS_PS_UNIT_TYPE_LVL WHERE CLOSED_IND = 'N' ORDER BY LEVEL_CODE;Another critical pattern involves joining this table to other unit-related entities using the UNIT_TYPE_ID or LEVEL_CODE to generate master-detail reports on program structures. Troubleshooting or data validation scripts may also query this table to identify invalid or orphaned references in transactional data.
Related Objects
Based on the provided dependency information, the IGS_PS_UNIT_TYPE_LVL table is referenced by other objects within the APPS context. While specific foreign key relationships are not enumerated in the excerpt, the presence of a unique index on UNIT_TYPE_ID (IGS_PS_UNIT_TYPE_LVL_U1) strongly suggests it is the parent table in a relationship. It is logically a reference point for transactional tables that store unit definitions, program requirements, or enrollment rules, where a UNIT_TYPE_ID foreign key would ensure that only valid, predefined unit type levels are used. The dependency list indicates that "APPS.IGS_PS_UNIT_TYPE_LVL" references this base table, which is likely a public synonym or a view built upon IGS.IGS_PS_UNIT_TYPE_LVL for application use.
-
APPS.IGS_FI_UPG_RETENTION dependencies on IGS_FI_INVLN_INT_ALL
12.1.1
-
TABLE: IGS.IGS_PS_UNIT_TYPE_LVL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_UNIT_TYPE_LVL, object_name:IGS_PS_UNIT_TYPE_LVL, status:VALID,
-
TABLE: IGS.IGS_PS_PRG_UNIT_REL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_PRG_UNIT_REL, object_name:IGS_PS_PRG_UNIT_REL, status:VALID,
-
APPS.IGS_FI_PRC_FEE_ASS dependencies on IGS_FI_FEE_AS_ITEMS
12.1.1
-
APPS.IGS_FI_GL_INTERFACE dependencies on IGS_FI_INVLN_INT
12.1.1
-
APPS.IGS_PS_PRG_UNIT_REL_PKG dependencies on IGS_PS_PRG_UNIT_REL
12.1.1
-
APPS.IGS_PS_GEN_006 dependencies on IGS_PS_UNIT_TYPE_LVL
12.1.1
-
APPS.IGS_PS_GEN_006 dependencies on IGS_PS_RPT_FMLY_ALL
12.1.1
-
APPS.IGS_FI_PRC_FEE_ROLLV dependencies on IGS_FI_FTCI_ACCTS_PKG
12.1.1
-
APPS.IGS_PS_UNIT_TYPE_LVL_PKG dependencies on IGS_PS_UNIT_TYPE_LVL
12.1.1
-
APPS.IGS_FI_POSTING_PROCESS dependencies on IGS_FI_INVLN_INT_ALL
12.1.1
-
APPS.IGS_FI_PRC_FEE_ASS dependencies on IGS_PS_UNIT_TYPE_LVL
12.1.1
-
APPS.IGS_PS_UNIT_LGCY_PKG dependencies on IGS_PS_UNIT_TYPE_LVL
12.1.1
-
APPS.IGS_FI_COM_REC_INTERFACE dependencies on IGS_FI_INVLN_INT
12.1.1
-
View: IGS_FI_INVLN_INT
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_FI_INVLN_INT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_INVLN_INT, object_name:IGS_FI_INVLN_INT, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_FI_INVLN_INT ,
-
VIEW: APPS.IGS_PS_PRG_UNIT_REL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_PRG_UNIT_REL_V, object_name:IGS_PS_PRG_UNIT_REL_V, status:VALID,
-
VIEW: APPS.IGS_FI_INVLN_INT
12.1.1
-
APPS.IGS_FI_FEE_AS_RATE_PKG dependencies on IGS_GE_NUMBER
12.1.1
-
APPS.IGS_FI_POSTING_PROCESS dependencies on IGS_FI_INVLN_INT
12.1.1
-
APPS.IGS_FI_FEE_AS_RT_H_PKG dependencies on IGS_GE_NUMBER
12.1.1
-
APPS.IGS_FI_PRC_FEE_ASS dependencies on IGS_FI_FAI_DTLS
12.1.1
-
APPS.IGS_PS_PRG_UNIT_REL_PKG SQL Statements
12.1.1
-
APPS.IGS_FI_PRC_FEE_ASS dependencies on IGS_FI_FEE_AS_ITEMS_PKG
12.1.1
-
APPS.IGS_PS_UNIT_TYPE_LVL_PKG SQL Statements
12.1.1
-
Table: IGS_PS_PRG_UNIT_REL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_PRG_UNIT_REL, object_name:IGS_PS_PRG_UNIT_REL, status:VALID, product: IGS - Student System , description: This table will store the relationship between Program type and unit type levels , implementation_dba_data: IGS.IGS_PS_PRG_UNIT_REL ,
-
View: IGS_PS_PRG_UNIT_REL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_PRG_UNIT_REL_V, object_name:IGS_PS_PRG_UNIT_REL_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_PRG_UNIT_REL_V ,
-
VIEW: APPS.IGS_FI_FEE_AS_RT_H
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_FEE_AS_RT_H, object_name:IGS_FI_FEE_AS_RT_H, status:VALID,
-
View: IGS_PS_UNIT_VER
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_VER, object_name:IGS_PS_UNIT_VER, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_UNIT_VER ,
-
Table: IGS_PS_PRG_UNIT_REL
12.2.2
product: IGS - Student System (Obsolete) , description: This table will store the relationship between Program type and unit type levels , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGSBV_HIGH_ED_UNIT_VERSIONS
12.1.1
-
View: IGS_PS_PRG_UNIT_REL_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_HIGH_ED_UNIT_VERSIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_HIGH_ED_UNIT_VERSIONS, object_name:IGSBV_HIGH_ED_UNIT_VERSIONS, status:VALID, product: IGS - Student System , description: This entity describes the Unit version details with title information, important dates, maximum/minimum/increment points, details regarding enrolment with enrolment/offered load calendar types and sequence numbers. , implementation_dba_data: APPS.IGSBV_HIGH_ED_UNIT_VERSIONS ,
-
View: IGSBV_HIGH_ED_UNIT_VERSIONS
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes the Unit version details with title information, important dates, maximum/minimum/increment points, details regarding enrolment with enrolment/offered load calendar types and sequence numbers. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PS_UNIT_VER
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_PS_UNIT_TYPE_LVL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_UNIT_TYPE_LVL, object_name:IGS_PS_UNIT_TYPE_LVL, status:VALID, product: IGS - Student System , description: This table stores the unit program type level code and description. These would be associated with units. , implementation_dba_data: IGS.IGS_PS_UNIT_TYPE_LVL ,
-
Table: IGS_PS_UNIT_TYPE_LVL
12.2.2
product: IGS - Student System (Obsolete) , description: This table stores the unit program type level code and description. These would be associated with units. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_PS_UNIT_VER
12.1.1
-
VIEW: APPS.IGS_FI_SUB_ER_RT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_SUB_ER_RT_V, object_name:IGS_FI_SUB_ER_RT_V, status:VALID,
-
View: IGS_FI_SUB_ER_RT_V
12.2.2
product: IGS - Student System (Obsolete) , description: Fetches Sub Element Range Rates records , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_FI_UPG_RETENTION dependencies on IGS_GE_GEN_003
12.1.1
-
APPS.IGS_FI_PRC_FEE_ROLLV dependencies on FND_FLEX_KEYVAL
12.1.1
-
View: IGS_FI_SUB_ER_RT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_SUB_ER_RT_V, object_name:IGS_FI_SUB_ER_RT_V, status:VALID, product: IGS - Student System , description: Fetches Sub Element Range Rates records , implementation_dba_data: APPS.IGS_FI_SUB_ER_RT_V ,
-
APPS.IGS_FI_COM_REC_INTERFACE dependencies on IGS_GE_GEN_003
12.1.1
-
APPS.IGS_FI_PRC_FEE_ASS dependencies on IGS_FI_FEE_AS_RATE
12.1.1
-
VIEW: APPS.IGS_FI_INVLN_INT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_INVLN_INT_V, object_name:IGS_FI_INVLN_INT_V, status:VALID,
-
View: IGS_PS_UNIT_VER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_VER_V, object_name:IGS_PS_UNIT_VER_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_UNIT_VER_V ,
-
VIEW: APPS.IGS_FI_FEE_AS_RATE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_FEE_AS_RATE_V, object_name:IGS_FI_FEE_AS_RATE_V, status:VALID,
-
View: IGS_FI_FTCI_ACCTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_FTCI_ACCTS_V, object_name:IGS_FI_FTCI_ACCTS_V, status:VALID, product: IGS - Student System , description: A supplementary view used to simplify forms coding. , implementation_dba_data: APPS.IGS_FI_FTCI_ACCTS_V ,
-
View: IGS_PS_UNIT_VER_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_VER_HIST_V, object_name:IGS_PS_UNIT_VER_HIST_V, status:VALID, product: IGS - Student System , description: Merges the Unit Version History details with the Current Unit Version Details enabling all details to be accessed over time, up till the current day. Each entry represents all column values over defined time periods. , implementation_dba_data: APPS.IGS_PS_UNIT_VER_HIST_V ,