Search Results default_indicator
Overview
IGSFV_SUB_LOCATIONS is a read-only Oracle EBS view owned by the APPS schema within the IGS (Student System) product family. It describes the relationship between locations in order to determine geographical equivalence between them, exposing a sub-location hierarchy alongside the descriptive attributes of both the parent location and the sub-location. In Oracle EBS 12.1.1 and 12.2.2, the view serves as a reporting and integration surface over the location relationship data stored in the IGS_AD_LOCATION_REL table, joined to the location master in IGS_AD_LOCATION_ALL. Because the view is defined WITH READ ONLY, it is intended strictly for query and extraction purposes rather than for DML.
The user search term default_indicator maps directly to the view's DEFAULT_INDICATOR column, which is the aliased form of DFLT_IND from the underlying relationship table. This flag identifies the default sub-location associated with a given location, making it central to any query that needs to resolve which sub-location is treated as the primary or default geographic equivalent for a location.
Underlying Base Objects
The view is defined over three base tables in the APPS schema:
- IGS_AD_LOCATION_REL REL — the location relationship (equivalence) table, supplying LOCATION_CD, SUB_LOCATION_CD, DFLT_IND, and the standard WHO/audit columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE).
- IGS_AD_LOCATION_ALL LOC1 — the location master, joined on REL.LOCATION_CD = LOC1.LOCATION_CD, supplying the parent location description (LOCATION_DESC).
- IGS_AD_LOCATION_ALL LOC2 — the same location master, joined on REL.SUB_LOCATION_CD = LOC2.LOCATION_CD, supplying the sub-location description (SUB_LOCATION_DESC).
The relationship is therefore a self-referencing join of the location master through the relationship table, producing one row per location-to-sub-location pairing with descriptive text resolved for both ends of the relationship.
Key Columns
- LOCATION_CODE — the parent location code (aliased from REL.LOCATION_CD).
- SUB_LOCATION_CODE — the related sub-location code (aliased from REL.SUB_LOCATION_CD).
- DEFAULT_INDICATOR — the default flag (aliased from REL.DFLT_IND) indicating whether the sub-location is the default for the parent location. This is the column referenced by the "default_indicator" search.
- LOCATION_DESC — description of the parent location from LOC1.
- SUB_LOCATION_DESC — description of the sub-location from LOC2.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE — standard audit columns inherited from the relationship table.
Common Use Cases and Queries
Typical usage includes resolving the default sub-location for a location, validating geographic equivalence mappings, and extracting location hierarchies for reporting or downstream integration.
- Retrieve all sub-locations for a specific parent location, including the default flag and descriptive text.
- Identify the default sub-location only (WHERE DEFAULT_INDICATOR = 'Y').
- Audit recently changed relationships using LAST_UPDATE_DATE.
Sample query:
SELECT location_code, sub_location_code, default_indicator, location_desc, sub_location_desc
FROM apps.igsfv_sub_locations
WHERE default_indicator = 'Y'
ORDER BY location_code;
-
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: IGSBV_SUB_LOCATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_SUB_LOCATIONS, object_name:IGSBV_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.IGSBV_SUB_LOCATIONS ,
-
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: 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: IGSBV_UNIT_GRADING_SCHEMAS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_UNIT_GRADING_SCHEMAS, object_name:IGSBV_UNIT_GRADING_SCHEMAS, status:VALID, product: IGS - Student System , description: This is the base view, which describes the relation between units and grading schemas. , implementation_dba_data: APPS.IGSBV_UNIT_GRADING_SCHEMAS ,
-
View: IGSBV_HIGHER_EDU_PRG_AWARDS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_HIGHER_EDU_PRG_AWARDS, object_name:IGSBV_HIGHER_EDU_PRG_AWARDS, status:VALID, product: IGS - Student System , description: This is the base view which describes the award to students on completion of the program. The allowance has been made for zero to many awards per program. , implementation_dba_data: APPS.IGSBV_HIGHER_EDU_PRG_AWARDS ,
-
View: IGSFV_UNIT_GRADING_SCHEMAS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_UNIT_GRADING_SCHEMAS, object_name:IGSFV_UNIT_GRADING_SCHEMAS, status:VALID, product: IGS - Student System , description: This is the full view, which describes the relation between units and grading schemas. , implementation_dba_data: APPS.IGSFV_UNIT_GRADING_SCHEMAS ,
-
View: IGSFV_HIGHER_EDU_PRG_AWARDS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_HIGHER_EDU_PRG_AWARDS, object_name:IGSFV_HIGHER_EDU_PRG_AWARDS, status:VALID, product: IGS - Student System , description: This is the full view which describes the award to students on completion of the program. The allowance has been made for zero to many awards per program. , implementation_dba_data: APPS.IGSFV_HIGHER_EDU_PRG_AWARDS ,