Search Results closed_indicator
Overview
IGSBV_LOCATIONS is a read-only view owned by the APPS schema within the IGS (Student System) product family of Oracle E-Business Suite. It exposes records describing the physical locations that are available to the institution for scheduling, delivery, and administrative purposes. The view is defined as a projection over the location entity, presenting a business-friendly column naming convention (for example, LOCATION_CODE rather than LOCATION_CD, and REVENUE_ACCOUNT_CODE rather than REV_ACCOUNT_CD).
Its primary role is to support reporting and integration requirements where the full underlying location entity is not required or where a stable, read-only interface to location data is preferred. Because the view is marked WITH READ ONLY, it cannot be used as a target for DML operations, making it appropriate for extraction, ad hoc query, and inbound reference by downstream systems. The object was validated in the 12.2.2 documented metadata, and its structure is consistent with the 12.1.1 release.
Underlying Base Objects
The view text is defined over a single base table, IGS_AD_LOCATION_ALL. This table holds the canonical location records for the Student System, including location codes, descriptions, classification, mailing schedule behaviour, and accounting references. IGSBV_LOCATIONS does not introduce joins or aggregations; it is a straightforward column alias and renaming layer over the base table, restricted to read-only access.
The _ALL suffix on the base table indicates that, in a multi-organisation installation, the underlying table may carry an operating unit column. The view itself does not expose any ORG_ID column, so it should be treated as a reporting surface that returns the location set visible to the querying session under the standard EBS security model. No other base objects are documented as contributing to this view.
Key Columns
- LOCATION_CODE — The unique business key for the location, renamed from LOCATION_CD. Used to identify a location in scheduling and reporting extracts.
- DESCRIPTION — The human-readable name or description associated with the location.
- LOCATION_TYPE — Classifies the location for the purposes of scheduling and reporting (for example, distinct categories of teaching, administrative, or service venues).
- MAIL_DELIVERY_WORKING_DAYS — The pattern of working days applied when the location is used as a mailing address, renamed from MAIL_DLVRY_WRK_DAYS.
- CLOSED_INDICATOR — Flag indicating whether the location is currently closed, renamed from CLOSED_IND. Relevant when filtering active venues.
- REVENUE_ACCOUNT_CODE — The revenue account associated with the location, renamed from REV_ACCOUNT_CD. This is the column most likely sought by users searching for "revenue_account_code", since it carries the accounting code used when revenue is attributed to a location.
- COORDINATE_PERSON_ID — Reference to the person who coordinates the location, renamed from COORD_PERSON_ID.
- CREATED_BY / CREATION_DATE / LAST_UPDATED_BY / LAST_UPDATE_DATE — Standard EBS audit columns.
Common Use Cases and Queries
Typical usage includes extracting active locations with their assigned revenue accounts, validating that every open location carries a revenue account code before period close, and supplying location reference data to scheduling or finance integrations. A representative query returning open locations and their revenue codes follows:
SELECT location_code, description, location_type, revenue_account_code
FROM apps.igsbv_locations
WHERE closed_indicator = 'N';
To identify locations missing an accounting assignment, which is often the root cause of downstream revenue posting issues:
SELECT location_code, description
FROM apps.igsbv_locations
WHERE revenue_account_code IS NULL;
Because the view is read-only and directly mirrors IGS_AD_LOCATION_ALL, any referential or security restrictions applied to the base table also apply here. Queries should therefore be run with an appropriately privileged APPS session, and results should not be assumed to include records outside the session's organisational access.
-
View: IGSBV_LOCATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_LOCATIONS, object_name:IGSBV_LOCATIONS, status:VALID, product: IGS - Student System , description: This entity describes available physical locations , implementation_dba_data: APPS.IGSBV_LOCATIONS ,
-
View: IGSBV_SYSTEM_HOLD_EFFECT_TYPES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_SYSTEM_HOLD_EFFECT_TYPES, object_name:IGSBV_SYSTEM_HOLD_EFFECT_TYPES, status:VALID, product: IGS - Student System , description: This entity describes the hold effects recognised by the system, and available for application to a student. E.g. Suppression of transcript, maximum enrolment load restriction. , implementation_dba_data: APPS.IGSBV_SYSTEM_HOLD_EFFECT_TYPES ,
-
View: IGSBV_ROOMS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_ROOMS, object_name:IGSBV_ROOMS, status:VALID, product: IGS - Student System , description: This entity contains room information associated to a building. , implementation_dba_data: APPS.IGSBV_ROOMS ,
-
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: IGSFV_SYSTEM_HOLD_EFFECT_TYPES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_SYSTEM_HOLD_EFFECT_TYPES, object_name:IGSFV_SYSTEM_HOLD_EFFECT_TYPES, status:VALID, product: IGS - Student System , description: This entity describes the hold effects recognised by the system, and available for application to a student. eg. Suppression of transcript, maximum enrolment load restriction. , implementation_dba_data: APPS.IGSFV_SYSTEM_HOLD_EFFECT_TYPES ,
-
View: IGSFV_HOLD_TYPES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_HOLD_TYPES, object_name:IGSFV_HOLD_TYPES, status:VALID, product: IGS - Student System , description: Describes the user-defined hold types that might be applied to a person by the institution. For example, unpaid fees, failed academic progression check. These types contain one or more hold effects that are applied to the person. , implementation_dba_data: APPS.IGSFV_HOLD_TYPES ,
-
View: IGSBV_VENUES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_VENUES, object_name:IGSBV_VENUES, status:VALID, product: IGS - Student System , description: This entity describes the physical venue where an examination or graduation ceremony can be accommodated. A venue can exist within a location (eg. campus) or examination location (eg. Town Hall). , implementation_dba_data: APPS.IGSBV_VENUES ,
-
View: IGSFV_ROOMS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_ROOMS, object_name:IGSFV_ROOMS, status:VALID, product: IGS - Student System , description: This entity contains rooms information associated with a building. , implementation_dba_data: APPS.IGSFV_ROOMS ,
-
View: IGSBV_BUILDINGS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_BUILDINGS, object_name:IGSBV_BUILDINGS, status:VALID, product: IGS - Student System , description: This entity contains building information associated to a location. , implementation_dba_data: APPS.IGSBV_BUILDINGS ,
-
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: IGSBV_HOLD_TYPES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_HOLD_TYPES, object_name:IGSBV_HOLD_TYPES, status:VALID, product: IGS - Student System , description: Describes the user-defined hold types that might be applied to a person by the institution. For example, unpaid fees, failed academic progression check. These types contain one or more hold effects that are applied to the person. , implementation_dba_data: APPS.IGSBV_HOLD_TYPES ,
-
View: IGSFV_VENUES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_VENUES, object_name:IGSFV_VENUES, status:VALID, product: IGS - Student System , description: This entity describes the physical venue where an examination or graduation ceremony can be accommodated. A venue can exist within a location (eg. campus) or examination location (eg. Town Hall). , implementation_dba_data: APPS.IGSFV_VENUES ,
-
View: IGSFV_CATALOG_VERSIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_CATALOG_VERSIONS, object_name:IGSFV_CATALOG_VERSIONS, status:VALID, product: IGS - Student System , description: This is the full view, which captures the catalog versions. , implementation_dba_data: APPS.IGSFV_CATALOG_VERSIONS ,
-
View: IGSBV_CATALOG_VERSIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_CATALOG_VERSIONS, object_name:IGSBV_CATALOG_VERSIONS, status:VALID, product: IGS - Student System , description: This is the base view which captures the catalog versions. , implementation_dba_data: APPS.IGSBV_CATALOG_VERSIONS ,
-
View: IGSBV_ENRL_ELIGIBILITY_SETUPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_ENRL_ELIGIBILITY_SETUPS, object_name:IGSBV_ENRL_ELIGIBILITY_SETUPS, status:VALID, product: IGS - Student System , description: This view queries the available method types that students can be enrolled to. , implementation_dba_data: APPS.IGSBV_ENRL_ELIGIBILITY_SETUPS ,
-
View: IGSBV_DISCONTINUATION_REASONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_DISCONTINUATION_REASONS, object_name:IGSBV_DISCONTINUATION_REASONS, status:VALID, product: IGS - Student System , description: Describes the user defined reason codes for dropping the units , implementation_dba_data: APPS.IGSBV_DISCONTINUATION_REASONS ,
-
View: IGSFV_PERSON_TYPES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_PERSON_TYPES, object_name:IGSFV_PERSON_TYPES, status:VALID, product: IGS - Student System , description: This entity contains information about the user defined person types and their mapping to the system defined person types. , implementation_dba_data: APPS.IGSFV_PERSON_TYPES ,
-
View: IGSFV_CAL_SYS_DT_TYP_OVRD_RLS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_CAL_SYS_DT_TYP_OVRD_RLS, object_name:IGSFV_CAL_SYS_DT_TYP_OVRD_RLS, status:VALID, product: IGS - Student System , description: This entity contains the overriding rules of the seeded system date types. , implementation_dba_data: APPS.IGSFV_CAL_SYS_DT_TYP_OVRD_RLS ,
-
View: IGSFV_DISCONTINUATION_STATUSES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_DISCONTINUATION_STATUSES, object_name:IGSFV_DISCONTINUATION_STATUSES, status:VALID, product: IGS - Student System , description: This entity describes user-defined administrative unit statuses that map to system-defined unit statuses, which are system and manually applied. , implementation_dba_data: APPS.IGSFV_DISCONTINUATION_STATUSES ,
-
View: IGSBV_DISCONTINUATION_STATUSES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_DISCONTINUATION_STATUSES, object_name:IGSBV_DISCONTINUATION_STATUSES, status:VALID, product: IGS - Student System , description: This entity describes user-defined administrative unit statuses that map to system-defined unit statuses, which are system and manually applied. , implementation_dba_data: APPS.IGSBV_DISCONTINUATION_STATUSES ,
-
View: IGSBV_CALENDAR_PERIOD_TYPES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_CALENDAR_PERIOD_TYPES, object_name:IGSBV_CALENDAR_PERIOD_TYPES, status:VALID, product: IGS - Student System , description: This is the base view for the entity Calendar Period Types which describe available calendar types. , implementation_dba_data: APPS.IGSBV_CALENDAR_PERIOD_TYPES ,
-
View: IGSFV_DISCONTINUATION_REASONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_DISCONTINUATION_REASONS, object_name:IGSFV_DISCONTINUATION_REASONS, status:VALID, product: IGS - Student System , description: Describes the user defined reason codes for dropping the units. , implementation_dba_data: APPS.IGSFV_DISCONTINUATION_REASONS ,
-
View: IGSFV_ENRL_ELIGIBILITY_SETUPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_ENRL_ELIGIBILITY_SETUPS, object_name:IGSFV_ENRL_ELIGIBILITY_SETUPS, status:VALID, product: IGS - Student System , description: This view queries the available method types that students can be enrolled to. , implementation_dba_data: APPS.IGSFV_ENRL_ELIGIBILITY_SETUPS ,
-
View: IGSBV_PROGRAM_ATTENDANCE_MODES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_PROGRAM_ATTENDANCE_MODES, object_name:IGSBV_PROGRAM_ATTENDANCE_MODES, status:VALID, product: IGS - Student System , description: This is a base view, which describes available university program attendance modes. , implementation_dba_data: APPS.IGSBV_PROGRAM_ATTENDANCE_MODES ,
-
View: IGSBV_FIELDS_OF_STUDY
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_FIELDS_OF_STUDY, object_name:IGSBV_FIELDS_OF_STUDY, status:VALID, product: IGS - Student System , description: This is the base view which describes university set of fields of study. , implementation_dba_data: APPS.IGSBV_FIELDS_OF_STUDY ,
-
View: IGSFV_PERSON_GROUPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_PERSON_GROUPS, object_name:IGSFV_PERSON_GROUPS, status:VALID, product: IGS - Student System , description: This entity contains information about the person groups. , implementation_dba_data: APPS.IGSFV_PERSON_GROUPS ,
-
View: IGSFV_ACADEMIC_DISCIPLINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_ACADEMIC_DISCIPLINES, object_name:IGSFV_ACADEMIC_DISCIPLINES, status:VALID, product: IGS - Student System , description: This is the full view which describes the university set of discipline group codes. , implementation_dba_data: APPS.IGSFV_ACADEMIC_DISCIPLINES ,
-
View: IGSFV_CAL_PRD_EVNT_TYPES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_CAL_PRD_EVNT_TYPES, object_name:IGSFV_CAL_PRD_EVNT_TYPES, status:VALID, product: IGS - Student System , description: This is the full view for the entity Calendar Period Event Types that describes the available date aliases. , implementation_dba_data: APPS.IGSFV_CAL_PRD_EVNT_TYPES ,
-
View: IGSBV_PERSON_TYPES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_PERSON_TYPES, object_name:IGSBV_PERSON_TYPES, status:VALID, product: IGS - Student System , description: This entity contains information about the user defined person types and their mapping to the system defined person types. , implementation_dba_data: APPS.IGSBV_PERSON_TYPES ,
-
View: IGSBV_AWARDS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_AWARDS, object_name:IGSBV_AWARDS, status:VALID, product: IGS - Student System , description: This is the base view which describes the awards offered by the university. , implementation_dba_data: APPS.IGSBV_AWARDS ,
-
View: IGSFV_AWARDS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_AWARDS, object_name:IGSFV_AWARDS, status:VALID, product: IGS - Student System , description: This is the full view which describes the awards offered by the university. , implementation_dba_data: APPS.IGSFV_AWARDS ,
-
View: IGSBV_CAL_PRD_EVNT_TYPES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_CAL_PRD_EVNT_TYPES, object_name:IGSBV_CAL_PRD_EVNT_TYPES, status:VALID, product: IGS - Student System , description: This is the base view for the entity Calendar Period Event Types that describes the available date aliases. , implementation_dba_data: APPS.IGSBV_CAL_PRD_EVNT_TYPES ,
-
View: IGSFV_CALENDAR_PERIOD_TYPES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_CALENDAR_PERIOD_TYPES, object_name:IGSFV_CALENDAR_PERIOD_TYPES, status:VALID, product: IGS - Student System , description: This is the full view for the entity Calendar Period Types which describes available calendar types. , implementation_dba_data: APPS.IGSFV_CALENDAR_PERIOD_TYPES ,
-
View: IGSFV_PROGRAM_ATTENDANCE_MODES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_PROGRAM_ATTENDANCE_MODES, object_name:IGSFV_PROGRAM_ATTENDANCE_MODES, status:VALID, product: IGS - Student System , description: This is a full view, which describes available university program attendance modes. , implementation_dba_data: APPS.IGSFV_PROGRAM_ATTENDANCE_MODES ,
-
View: IGSBV_PERSON_GROUPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_PERSON_GROUPS, object_name:IGSBV_PERSON_GROUPS, status:VALID, product: IGS - Student System , description: This entity contains information about the person groups. , implementation_dba_data: APPS.IGSBV_PERSON_GROUPS ,
-
View: IGSBV_ACADEMIC_DISCIPLINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_ACADEMIC_DISCIPLINES, object_name:IGSBV_ACADEMIC_DISCIPLINES, status:VALID, product: IGS - Student System , description: This is the base view which describes the university set of discipline group codes. , implementation_dba_data: APPS.IGSBV_ACADEMIC_DISCIPLINES ,
-
View: IGSBV_CAL_SYS_DT_TYP_OVRD_RLS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_CAL_SYS_DT_TYP_OVRD_RLS, object_name:IGSBV_CAL_SYS_DT_TYP_OVRD_RLS, status:VALID, product: IGS - Student System , description: This entity contains the overriding rules of the seeded system date types. , implementation_dba_data: APPS.IGSBV_CAL_SYS_DT_TYP_OVRD_RLS ,
-
View: IGSFV_FIELDS_OF_STUDY
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_FIELDS_OF_STUDY, object_name:IGSFV_FIELDS_OF_STUDY, status:VALID, product: IGS - Student System , description: This is the full view which describes university set of fields of study. , implementation_dba_data: APPS.IGSFV_FIELDS_OF_STUDY ,