Search Results location_desc
Overview
The view IGSFV_BUILDINGS is a reporting and integration construct within the Oracle E-Business Suite (EBS) Student System module, identified by the product code IGS. As documented in the ETRM metadata, this entity "contains building information associated to a location." It exposes a denormalized projection of building and location data so that downstream consumers — reports, concurrent programs, interfaces, and third-party integrations — can resolve human-readable building codes and location descriptions without joining the underlying transactional tables directly.
The view is explicitly declared with a WITH READ ONLY clause, meaning it cannot be used as the target of DML. It is intended strictly for query access. The ETRM metadata further indicates that the object is flagged as "Obsolete" and is "Not implemented in this database" in the documented environment. Practitioners should therefore treat IGSFV_BUILDINGS as a legacy or dormant object that may exist only in certain historical EBS 12.1.1 / 12.2.2 installations where the Student System product was licensed and deployed, and should verify its presence in the data dictionary before relying on it.
Underlying Base Objects
The documented view text defines IGSFV_BUILDINGS over two base tables joined on the location code:
- IGS_AD_BUILDING_ALL — aliased as
BLD; the primary source of building records. - IGS_AD_LOCATION_ALL — aliased as
LOC; the source of location descriptions.
The join predicate is BLD.LOCATION_CD = LOC.LOCATION_CD, linking each building to its parent location. The two _ALL tables follow the standard multi-org pattern in Oracle EBS, in which the base table holds the data and a corresponding _ALL object exposes it across operating units. Although the ETRM metadata lists no referenced base objects under "Documented view metadata," the view text itself establishes these two tables as the authoritative dependencies.
Key Columns
The view exposes ten columns. The most significant for the user's search term building_code is the first:
- BUILDING_CODE — derived from
BLD.BUILDING_CD; the alphanumeric code uniquely identifying a building. This is the column most often used in filters and lookups. - LOCATION_CODE — from
BLD.LOCATION_CD; the location to which the building belongs. - DESCRIPTION — the building description from
BLD.DESCRIPTION. - CLOSED_INDICATOR — from
BLD.CLOSED_IND; denotes whether the building is administratively closed. - LOCATION_DESC — from
LOC.DESCRIPTION; the parent location's descriptive name, useful for display in reports. - BUILDING_ID — the surrogate primary key from the building table, used for joins.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE — standard EBS audit columns recording who created and last modified the building row.
Common Use Cases and Queries
Typical scenarios include validating building codes during data conversion, listing active buildings per location, and enriching student location data for reporting. Because the view is read-only and, per the metadata, likely unimplemented in most environments, all queries should guard against its absence.
A representative lookup by building code:
SELECT building_code, location_code, description, location_desc, closed_indicator FROM igsfv_buildings WHERE building_code = :p_building_code;SELECT building_code, description FROM igsfv_buildings WHERE closed_indicator = 'N' ORDER BY building_code;SELECT b.building_code, b.description, b.location_code, b.location_desc FROM igsfv_buildings b WHERE b.location_code = :p_location_code;
These queries return the resolved building and location information in a single pass, eliminating the need for callers to join IGS_AD_BUILDING_ALL and IGS_AD_LOCATION_ALL manually. Given the obsolete status noted in ETRM, developers are advised to confirm availability and consider the base tables as a fallback source.
-
View: IGSFV_BUILDINGS
12.2.2
product: IGS - Student System (Obsolete) , description: This entity contains building information associated to a location , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_BUILDINGS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_BUILDINGS, object_name:IGSFV_BUILDINGS, status:VALID, product: IGS - Student System , description: This entity contains building information associated to a location , implementation_dba_data: APPS.IGSFV_BUILDINGS ,
-
VIEW: APPS.IGSFV_BUILDINGS
12.1.1
-
View: IGS_PS_USEC_AS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_USEC_AS_V, object_name:IGS_PS_USEC_AS_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_USEC_AS_V ,
-
View: IGSFV_SUB_LOCATIONS
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes relationship between locations to determine geographical equivalence between locations. , implementation_dba_data: Not implemented in this database ,
-
View: OKL_AM_ASSET_CNDTN_FULL_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AM_ASSET_CNDTN_FULL_UV, object_name:OKL_AM_ASSET_CNDTN_FULL_UV, status:VALID, product: OKL - Leasing and Finance Management , implementation_dba_data: APPS.OKL_AM_ASSET_CNDTN_FULL_UV ,
-
View: IGS_HE_ST_UNV_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_HE_ST_UNV_DTLS_V, object_name:IGS_HE_ST_UNV_DTLS_V, status:VALID, product: IGS - Student System , description: Hesa Unit Details , implementation_dba_data: APPS.IGS_HE_ST_UNV_DTLS_V ,
-
View: IGS_HE_ST_UNV_DTLS_V
12.2.2
product: IGS - Student System (Obsolete) , description: Hesa Unit Details , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_SUB_LOCATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_SUB_LOCATIONS, object_name:IGSFV_SUB_LOCATIONS, status:VALID, product: IGS - Student System , description: This entity describes relationship between locations to determine geographical equivalence between locations. , implementation_dba_data: APPS.IGSFV_SUB_LOCATIONS ,
-
View: IGS_PS_USEC_AS_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGSFV_SUB_LOCATIONS
12.1.1
-
VIEW: APPS.IGS_HE_ST_UNV_DTLS_V
12.1.1
-
View: OKL_AM_ASSET_CNDTN_FULL_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AM_ASSET_CNDTN_FULL_UV, object_name:OKL_AM_ASSET_CNDTN_FULL_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_AM_ASSET_CNDTN_FULL_UV ,
-
VIEW: APPS.IGS_PS_USEC_AS_V
12.1.1
-
VIEW: APPS.OKL_AM_ASSET_CNDTN_FULL_UV
12.1.1
-
View: IGSFV_UNIT_UK_STATISTICS
12.2.2
product: IGS - Student System (Obsolete) , description: Full View for UK Statistics Unit Details , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_UNIT_UK_STATISTICS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_UNIT_UK_STATISTICS, object_name:IGSFV_UNIT_UK_STATISTICS, status:VALID, product: IGS - Student System , description: Full View for UK Statistics Unit Details , implementation_dba_data: APPS.IGSFV_UNIT_UK_STATISTICS ,
-
VIEW: APPS.IGSFV_UNIT_UK_STATISTICS
12.1.1
-
VIEW: APPS.OKL_AM_ASSET_CNDTN_FULL_UV
12.2.2
-
View: IGSFV_UK_PRG_OFR_OPT_ORG_UNITS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_UK_PRG_OFR_OPT_ORG_UNITS, object_name:IGSFV_UK_PRG_OFR_OPT_ORG_UNITS, status:VALID, product: IGS - Student System , description: Full View for Program Offering Option Unit Set HESA Details - Organizations , implementation_dba_data: APPS.IGSFV_UK_PRG_OFR_OPT_ORG_UNITS ,
-
View: IGSFV_UK_PRG_OFR_OPT_ORG_UNITS
12.2.2
product: IGS - Student System (Obsolete) , description: Full View for Program Offering Option Unit Set HESA Details - Organizations , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGSFV_INTERVIEW_PNL_MEMBR_DTLS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_INTERVIEW_PNL_MEMBR_DTLS, object_name:IGSFV_INTERVIEW_PNL_MEMBR_DTLS, status:VALID,
-
VIEW: APPS.IGS_EN_USEC_EXAM_SCH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_USEC_EXAM_SCH_V, object_name:IGS_EN_USEC_EXAM_SCH_V, status:VALID,
-
View: IGSFV_PRG_OFR_OPT_COST_CENTRES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_PRG_OFR_OPT_COST_CENTRES, object_name:IGSFV_PRG_OFR_OPT_COST_CENTRES, status:VALID, product: IGS - Student System , description: Full View for Program Offering Option Unit Set HESA Details - Cost Center Details , implementation_dba_data: APPS.IGSFV_PRG_OFR_OPT_COST_CENTRES ,
-
VIEW: APPS.IGSFV_BUILDINGS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_BUILDINGS, object_name:IGSFV_BUILDINGS, status:VALID,
-
VIEW: APPS.IGS_PS_USEC_AS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_USEC_AS_V, object_name:IGS_PS_USEC_AS_V, status:VALID,
-
View: IGSFV_PRG_OFR_OPT_COST_CENTRES
12.2.2
product: IGS - Student System (Obsolete) , description: Full View for Program Offering Option Unit Set HESA Details - Cost Center Details , implementation_dba_data: Not implemented in this database ,
-
View: HR_ALL_POSITIONS_D
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_ALL_POSITIONS_D, object_name:HR_ALL_POSITIONS_D, status:VALID, product: PER - Human Resources , description: Used by DateTrack history. , implementation_dba_data: APPS.HR_ALL_POSITIONS_D ,
-
View: IGSFV_POOUS_HESA_COST_CENTRES
12.2.2
product: IGS - Student System (Obsolete) , description: Full business view to allow queries on Program HESA Cost Center Details , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_POOUS_HESA_COST_CENTRES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_POOUS_HESA_COST_CENTRES, object_name:IGSFV_POOUS_HESA_COST_CENTRES, status:VALID, product: IGS - Student System , description: Full business view to allow queries on Program HESA Cost Center Details , implementation_dba_data: APPS.IGSFV_POOUS_HESA_COST_CENTRES ,
-
VIEW: APPS.IGSFV_UK_PRG_OFR_OPT_ORG_UNITS
12.1.1
-
View: HR_ALL_POSITIONS_D
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_ALL_POSITIONS_D, object_name:HR_ALL_POSITIONS_D, status:VALID, product: PER - Human Resources , description: Used by DateTrack history. , implementation_dba_data: APPS.HR_ALL_POSITIONS_D ,
-
VIEW: APPS.IGS_HE_ST_UNV_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_HE_ST_UNV_DTLS_V, object_name:IGS_HE_ST_UNV_DTLS_V, status:VALID,
-
VIEW: APPS.OKL_AM_ASSET_CNDTN_FULL_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AM_ASSET_CNDTN_FULL_UV, object_name:OKL_AM_ASSET_CNDTN_FULL_UV, status:VALID,
-
VIEW: APPS.HR_ALL_POSITIONS_D
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_ALL_POSITIONS_D, object_name:HR_ALL_POSITIONS_D, status:VALID,
-
VIEW: APPS.IGSFV_PGM_OFR_PAT_ADM_PERD
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_PGM_OFR_PAT_ADM_PERD, object_name:IGSFV_PGM_OFR_PAT_ADM_PERD, status:VALID,
-
VIEW: APPS.HR_ALL_POSITIONS_D
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_ALL_POSITIONS_D, object_name:HR_ALL_POSITIONS_D, status:VALID,
-
VIEW: APPS.IGSFV_PRG_OFR_OPT_COST_CENTRES
12.1.1
-
VIEW: APPS.OKL_AM_ASSET_CNDTN_FULL_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AM_ASSET_CNDTN_FULL_UV, object_name:OKL_AM_ASSET_CNDTN_FULL_UV, status:VALID,
-
View: IGS_AD_SCRN_INT_PANEL_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_SCRN_INT_PANEL_DTLS_V, object_name:IGS_AD_SCRN_INT_PANEL_DTLS_V, status:VALID, product: IGS - Student System , description: View to show the Panel Details such as Application Instances, Interview Location details and Final Decision details, along with the Panel Type, for a given panel. , implementation_dba_data: APPS.IGS_AD_SCRN_INT_PANEL_DTLS_V ,
-
View: IGS_AD_SCRN_INT_PANEL_DTLS_V
12.2.2
product: IGS - Student System (Obsolete) , description: View to show the Panel Details such as Application Instances, Interview Location details and Final Decision details, along with the Panel Type, for a given panel. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGSFV_UNIT_UK_STATISTICS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_UNIT_UK_STATISTICS, object_name:IGSFV_UNIT_UK_STATISTICS, status:VALID,
-
VIEW: APPS.IGSFV_SUB_LOCATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_SUB_LOCATIONS, object_name:IGSFV_SUB_LOCATIONS, status:VALID,
-
View: IGS_AD_PNMEMBR_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_PNMEMBR_DTLS_V, object_name:IGS_AD_PNMEMBR_DTLS_V, status:VALID, product: IGS - Student System , description: View of IGS_AD_PNMEMBR_DTLS. Shows the Application instances assigned for a panel member along with the Panel member Interview location and decision details. , implementation_dba_data: APPS.IGS_AD_PNMEMBR_DTLS_V ,
-
VIEW: APPS.IGSFV_APPL_PANEL_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_APPL_PANEL_DETAILS, object_name:IGSFV_APPL_PANEL_DETAILS, status:VALID,
-
VIEW: APPS.IGSFV_PGM_OFR_ADM_PAT_RESTRCTN
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_PGM_OFR_ADM_PAT_RESTRCTN, object_name:IGSFV_PGM_OFR_ADM_PAT_RESTRCTN, status:VALID,
-
View: IGS_AD_PNMEMBR_DTLS_V
12.2.2
product: IGS - Student System (Obsolete) , description: View of IGS_AD_PNMEMBR_DTLS. Shows the Application instances assigned for a panel member along with the Panel member Interview location and decision details. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AD_PANEL_DTLS_V
12.2.2
product: IGS - Student System (Obsolete) , description: View of IGS_AD_PANEL_DTLS. Shows the Application instances assigned for a panel along with the Panel Interview location and decision details , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.HR_ALL_POSITIONS_D
12.2.2
-
View: IGS_AD_PANEL_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_PANEL_DTLS_V, object_name:IGS_AD_PANEL_DTLS_V, status:VALID, product: IGS - Student System , description: View of IGS_AD_PANEL_DTLS. Shows the Application instances assigned for a panel along with the Panel Interview location and decision details , implementation_dba_data: APPS.IGS_AD_PANEL_DTLS_V ,