Search Results igs_ad_location_type_all
Overview
The IGS_AD_LOCATION_TYPE_ALL table is a core reference table within the now-obsolete Oracle Student System (IGS) module of Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2. It serves as a master repository for classifying different categories or types of physical or logical locations used by an educational institution. Its primary role is to enforce data integrity by providing a controlled list of valid location types, which are then referenced by transactional and master data tables across the student administration system. This table is designed to support multi-organization access control through its "_ALL" suffix and corresponding partitioning strategy, allowing data to be segmented by operating unit. As noted in the provided ETRM documentation, the table's status is marked as "Obsolete," indicating it is part of a legacy codebase that may be superseded in future releases or updates.
Key Information Stored
Based on the documented primary key and typical design patterns for such reference tables in EBS, the table's central column is LOCATION_TYPE. This column acts as a unique identifier or code for each location classification (e.g., 'CAMPUS', 'BUILDING', 'ROOM', 'SPORTS_FACILITY', 'LIBRARY'). While the specific full column list is not detailed in the provided excerpt, tables of this nature commonly include descriptive columns such as DESCRIPTION, an ENABLED_FLAG to control active status, and standard EBS WHO columns (CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN). The primary key constraint IGS_AD_LOCATION_TYPE_PK ensures the uniqueness of the LOCATION_TYPE values.
Common Use Cases and Queries
The primary use case is to maintain and query the valid set of location types for validation and reporting. It is commonly referenced in user interfaces (LOVs) when assigning a type to a new location and in reports that categorize institutional assets or spaces. A typical administrative query would list all active location types. Given the foreign key relationship, a common join query would retrieve all locations of a specific type.
- Sample Query to list all location types:
SELECT location_type, description FROM igs_ad_location_type_all WHERE enabled_flag = 'Y' ORDER BY 1; - Sample Query joining to the location table:
SELECT loc.location_code, loc.description, loc_type.description as type_name FROM igs_ad_location_all loc, igs_ad_location_type_all loc_type WHERE loc.location_type = loc_type.location_type AND loc_type.location_type = 'CAMPUS';
Related Objects
The documented relationship data shows a clear foreign key dependency from the IGS_AD_LOCATION_ALL table, which stores the detailed instances of locations. This is the primary and, based on the provided metadata, only documented direct relationship.
- IGS_AD_LOCATION_ALL: This table references IGS_AD_LOCATION_TYPE_ALL via its LOCATION_TYPE column (foreign key). The relationship ensures that every location record in IGS_AD_LOCATION_ALL is assigned a valid type defined in the IGS_AD_LOCATION_TYPE_ALL master table.
-
Table: IGS_AD_LOCATION_TYPE_ALL
12.2.2
product: IGS - Student System (Obsolete) , description: Describes locations used by institution , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_AD_LOCATION_TYPE_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_LOCATION_TYPE_ALL, object_name:IGS_AD_LOCATION_TYPE_ALL, status:VALID, product: IGS - Student System , description: Describes locations used by institution , implementation_dba_data: IGS.IGS_AD_LOCATION_TYPE_ALL ,
-
APPS.IGS_OR_VAL_LOT dependencies on IGS_AD_LOCATION_TYPE_ALL
12.1.1
-
APPS.IGS_OR_VAL_LOT dependencies on IGS_AD_LOCATION_TYPE_ALL
12.1.1
-
APPS.IGS_PS_VALIDATE_LGCY_PKG dependencies on IGS_AD_LOCATION_TYPE_ALL
12.1.1
-
APPS.IGS_AD_LOCATION_TYPE_PKG dependencies on IGS_AD_LOCATION_TYPE_ALL
12.1.1
-
APPS.IGS_AD_LOCATION_TYPE_PKG SQL Statements
12.1.1
-
SYNONYM: APPS.IGS_AD_LOCATION_TYPE_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_AD_LOCATION_TYPE_ALL, status:VALID,
-
VIEW: APPS.IGSFV_LOCATIONS
12.1.1
-
APPS.IGS_PS_VALIDATE_LGCY_PKG dependencies on IGS_AD_LOCATION_ALL
12.1.1
-
PACKAGE BODY: APPS.IGS_AD_LOCATION_TYPE_PKG
12.1.1
-
TABLE: IGS.IGS_AD_LOCATION_TYPE_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_LOCATION_TYPE_ALL, object_name:IGS_AD_LOCATION_TYPE_ALL, status:VALID,
-
VIEW: APPS.IGS_AD_LOCATION_V
12.1.1
-
VIEW: APPS.IGS_AD_LOCATION_TYPE
12.1.1
-
PACKAGE: APPS.IGS_OR_VAL_LOT
12.1.1
owner:APPS, object_type:PACKAGE, object_name:IGS_OR_VAL_LOT, status:VALID,
-
PACKAGE BODY: APPS.IGS_OR_VAL_LOT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_OR_VAL_LOT, status:VALID,
-
APPS.IGS_AD_LOCATION_TYPE_PKG dependencies on IGS_AD_LOCATION_TYPE_PKG
12.1.1
-
View: IGSFV_LOCATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_LOCATIONS, object_name:IGSFV_LOCATIONS, status:VALID, product: IGS - Student System , description: This entity describes available physical locations , implementation_dba_data: APPS.IGSFV_LOCATIONS ,
-
View: IGS_AD_LOCATION_TYPE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_LOCATION_TYPE, object_name:IGS_AD_LOCATION_TYPE, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_AD_LOCATION_TYPE ,
-
View: IGSFV_LOCATIONS
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes available physical locations , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGS_AD_LOCATION_TYPE_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AD_LOCATION_TYPE_PKG, status:VALID,
-
View: IGS_AD_LOCATION_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_LOCATION_V, object_name:IGS_AD_LOCATION_V, status:VALID, product: IGS - Student System , description: Shows the location details for a person , implementation_dba_data: APPS.IGS_AD_LOCATION_V ,
-
View: IGS_AD_LOCATION_TYPE
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_AD_LOCATION_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_LOCATION_ALL, object_name:IGS_AD_LOCATION_ALL, status:VALID, product: IGS - Student System , description: Describes available geographic locations at which programs and units may be offered or taught , implementation_dba_data: IGS.IGS_AD_LOCATION_ALL ,
-
View: IGS_AD_LOCATION_V
12.2.2
product: IGS - Student System (Obsolete) , description: Shows the location details for a person , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_AD_LOCATION_ALL
12.2.2
product: IGS - Student System (Obsolete) , description: Describes available geographic locations at which programs and units may be offered or taught , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_AD_LOCATION_TYPE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_LOCATION_TYPE, object_name:IGS_AD_LOCATION_TYPE, status:VALID,
-
PACKAGE BODY: APPS.IGS_PS_VALIDATE_LGCY_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_PS_VALIDATE_LGCY_PKG, status:VALID,
-
VIEW: APPS.IGSFV_LOCATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_LOCATIONS, object_name:IGSFV_LOCATIONS, status:VALID,
-
VIEW: APPS.IGS_AD_LOCATION_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_LOCATION_V, object_name:IGS_AD_LOCATION_V, status:VALID,
-
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
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
APPS.IGS_PS_VALIDATE_LGCY_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_PS_VALIDATE_LGCY_PKG
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'. ,
-
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'. ,