Search Results igs_ad_locvenue_addr
Overview
IGS_AD_LOCVENUE_ADDR is a table in the IGS (Student System) product family of Oracle E-Business Suite, documented as VALID in the ETRM repository for releases 12.1.1 and 12.2.2. It stores location venue and address details, functioning as the address-bearing extension for venues that belong to the broader location model in the Student System. Its ownership is the IGS schema, and the object carries 14 documented columns in the 12.1.1 physical schema.
Within the institution's location and venue hierarchy, the table sits between the general location record and the downstream consumers of venue addresses. The parent is a row in IGS_PE_HZ_LOCATIONS, reached through LOCATION_ID; the children are IGS_PE_CONTACT_DTLS and IGS_PE_LOCVENUE_USE, both of which point back to this table through LOCATION_VENUE_ADDR_ID (or LOC_VENUE_ADDR_ID). This places the table in the coverage role of a Data Vault satellite relative to the location hub: it holds descriptive attributes — venue code, source type, address-identification flag — that describe a location rather than defining the identity of a shared business entity. The ETRM relationship metadata classifies it as satellite-leaning, which should be treated as a modeling suggestion rather than a physical implementation constraint.
Both releases of EBS share this structure. Implementation and DBA metadata list the table as IGS.IGS_AD_LOCVENUE_ADDR with the same 14 columns, so 12.1.1 and 12.2.2 query patterns are interchangeable for this object.
Key Information Stored
The surrogate primary key is LOCATION_VENUE_ADDR_ID, enforced by IGS_AD_LOCVENUE_ADDR_PK. The same column also appears in the unique index IGS_AD_LOCVENUE_ADDR_U1, making it both the physical row identifier and the documented unique business-key candidate; no separate natural key is exposed in the metadata.
- LOCATION_VENUE_ADDR_ID — surrogate primary key; the value referenced by child tables.
- LOCATION_ID — foreign key to IGS_PE_HZ_LOCATIONS, tying the venue address to its parent location.
- LOCATION_VENUE_CD — code identifying the venue.
- SOURCE_TYPE — classifies the origin or category of the venue/address record.
- IDENTIFYING_ADDRESS_FLAG — indicates whether this address is used to identify the venue.
- CREATED_BY, CREATION_DATE — WHO columns recording row creation.
- LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — WHO columns recording the most recent change.
- REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE — concurrent-program and application context for the change.
The metadata does not document address line, city, or postal attributes directly on this table; address text is presumed to be sourced from the related Oracle HZ location tables. The outer join to IGS_PE_HZ_LOCATIONS appears twice in the documented key list, reflecting the multiple access paths Oracle records for the same foreign key column.
Common Use Cases and Queries
Typical reports resolve venue addresses for enrollment, campus, and event scheduling. A join to the parent location provides the descriptive address context, while child tables supply contact details and venue usage. A representative pattern follows.
- Venue address lookup:
SELECT a.location_venue_addr_id, a.location_venue_cd, a.location_id FROM igs_ad_locvenue_addr a WHERE a.location_id = :p_location_id; - Identifying addresses only: filter on
IDENTIFYING_ADDRESS_FLAG = 'Y'to return the venues used as primary identifiers. - Source analysis: group by
SOURCE_TYPEto profile how venue addresses were created or imported. - Usage-dependent extract: join IGS_PE_LOCVENUE_USE on
LOC_VENUE_ADDR_ID = LOCATION_VENUE_ADDR_IDto retrieve only venues with active usage. - Contact-driven extract: join IGS_PE_CONTACT_DTLS on
LOCATION_VENUE_ADDR_IDfor venue-linked contact information. - Change auditing: query on
LAST_UPDATE_DATE,LAST_UPDATED_BY, orREQUEST_IDto trace recent maintenance, and use the WHO columns to build incremental extracts.
Related Objects
- IGS_PE_HZ_LOCATIONS — parent location table; joined on IGS_AD_LOCVENUE_ADDR.LOCATION_ID = IGS_PE_HZ_LOCATIONS.LOCATION_ID.
- IGS_PE_CONTACT_DTLS — child table referencing this object through LOCATION_VENUE_ADDR_ID; supplies contact-level detail for a venue address.
- IGS_PE_LOCVENUE_USE — child table referencing this object through LOC_VENUE_ADDR_ID; records how a venue address is used.
- IGS_AD_LOCVENUE_ADDR_PK / IGS_AD_LOCVENUE_ADDR_U1 — the primary key and unique index on LOCATION_VENUE_ADDR_ID that govern row identity and lookup performance.
No public API or view names for this table are documented in the ETRM excerpt. Application code should therefore treat the table as an internal Student System detail, accessed through the IGS_PE_* location and venue interfaces rather than directly, and should respect the documented foreign-key chain when extending or purging venue address data.
-
Table: IGS_AD_LOCVENUE_ADDR
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_LOCVENUE_ADDR, object_name:IGS_AD_LOCVENUE_ADDR, status:VALID, product: IGS - Student System , description: Contains location venue and address details , implementation_dba_data: IGS.IGS_AD_LOCVENUE_ADDR ,
-
Table: IGS_AD_LOCVENUE_ADDR
12.2.2
product: IGS - Student System (Obsolete) , description: Contains location venue and address details , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_PE_HZ_LOCATIONS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PE_HZ_LOCATIONS, object_name:IGS_PE_HZ_LOCATIONS, status:VALID, product: IGS - Student System , description: This entity describes the locations for a person , implementation_dba_data: IGS.IGS_PE_HZ_LOCATIONS ,
-
APPS.IGS_AD_LOCVENUE_ADDR_PKG SQL Statements
12.1.1
-
SYNONYM: APPS.IGS_AD_LOCVENUE_ADDR
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_AD_LOCVENUE_ADDR, status:VALID,
-
Table: IGS_PE_HZ_LOCATIONS
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes the locations for a person , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_AD_LOCATION_ADDR
12.1.1
-
TABLE: IGS.IGS_AD_LOCVENUE_ADDR
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_LOCVENUE_ADDR, object_name:IGS_AD_LOCVENUE_ADDR, status:VALID,
-
VIEW: APPS.IGS_AD_LOCATION_ADDR_V
12.1.1
-
VIEW: APPS.IGS_AD_LOCVENUE_ADDR_V
12.1.1
-
VIEW: APPS.IGS_GR_VENUE_ADDR
12.1.1
-
VIEW: APPS.IGS_GR_VENUE_ADDR_V
12.1.1
-
PACKAGE BODY: APPS.IGS_AD_LOCVENUE_ADDR_PKG
12.1.1
-
Table: IGS_PE_CONTACT_DTLS
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes the contact details of a location. , implementation_dba_data: Not implemented in this database ,
-
PACKAGE: APPS.IGS_AS_VAL_VEA
12.1.1
owner:APPS, object_type:PACKAGE, object_name:IGS_AS_VAL_VEA, status:VALID,
-
Table: IGS_PE_CONTACT_DTLS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PE_CONTACT_DTLS, object_name:IGS_PE_CONTACT_DTLS, status:VALID, product: IGS - Student System , description: This entity describes the contact details of a location. , implementation_dba_data: IGS.IGS_PE_CONTACT_DTLS ,
-
Table: IGS_PE_LOCVENUE_USE
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PE_LOCVENUE_USE, object_name:IGS_PE_LOCVENUE_USE, status:VALID, product: IGS - Student System , description: This entity describes the location venue usages , implementation_dba_data: IGS.IGS_PE_LOCVENUE_USE ,
-
Table: IGS_PE_LOCVENUE_USE
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes the location venue usages , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGS_AS_VAL_VEA
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AS_VAL_VEA, status:VALID,
-
View: IGS_GR_VENUE_ADDR
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGS_AD_LOCVENUE_ADDR_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AD_LOCVENUE_ADDR_PKG, status:VALID,
-
View: IGS_GR_VENUE_ADDR
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_GR_VENUE_ADDR, object_name:IGS_GR_VENUE_ADDR, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_GR_VENUE_ADDR ,
-
PACKAGE BODY: APPS.IGS_GE_GEN_002
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_GE_GEN_002, status:VALID,
-
View: IGS_GR_VENUE_ADDR_V
12.2.2
product: IGS - Student System (Obsolete) , description: IGS_GR_VENUE_ADDR_V is used to maintain venue addresses. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AD_LOCATION_ADDR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_LOCATION_ADDR_V, object_name:IGS_AD_LOCATION_ADDR_V, status:VALID, product: IGS - Student System , description: Contains the location, venue, and the address details for a person , implementation_dba_data: APPS.IGS_AD_LOCATION_ADDR_V ,
-
View: IGS_AD_LOCATION_ADDR
12.2.2
product: IGS - Student System (Obsolete) , description: Contains the location, venue, and the address details for a person , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGS_GE_GEN_001
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_GE_GEN_001, status:VALID,
-
View: IGS_GR_VENUE_ADDR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_GR_VENUE_ADDR_V, object_name:IGS_GR_VENUE_ADDR_V, status:VALID, product: IGS - Student System , description: IGS_GR_VENUE_ADDR_V is used to maintain venue addresses. , implementation_dba_data: APPS.IGS_GR_VENUE_ADDR_V ,
-
View: IGS_AD_LOCVENUE_ADDR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_LOCVENUE_ADDR_V, object_name:IGS_AD_LOCVENUE_ADDR_V, status:VALID, product: IGS - Student System , description: Shows the location, venue, and address details , implementation_dba_data: APPS.IGS_AD_LOCVENUE_ADDR_V ,
-
View: IGS_AD_LOCVENUE_ADDR_V
12.2.2
product: IGS - Student System (Obsolete) , description: Shows the location, venue, and address details , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_GE_GEN_002 SQL Statements
12.1.1
-
View: IGS_AD_LOCATION_ADDR
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_LOCATION_ADDR, object_name:IGS_AD_LOCATION_ADDR, status:VALID, product: IGS - Student System , description: Contains the location, venue, and the address details for a person , implementation_dba_data: APPS.IGS_AD_LOCATION_ADDR ,
-
View: IGS_AD_LOCATION_ADDR_V
12.2.2
product: IGS - Student System (Obsolete) , description: Contains the location, venue, and the address details for a person , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_GR_VENUE_ADDR
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_GR_VENUE_ADDR, object_name:IGS_GR_VENUE_ADDR, status:VALID,
-
APPS.IGS_GE_GEN_001 SQL Statements
12.1.1
-
VIEW: APPS.IGS_GR_VENUE_ADDR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_GR_VENUE_ADDR_V, object_name:IGS_GR_VENUE_ADDR_V, status:VALID,
-
VIEW: APPS.IGS_AD_LOCVENUE_ADDR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_LOCVENUE_ADDR_V, object_name:IGS_AD_LOCVENUE_ADDR_V, status:VALID,
-
VIEW: APPS.IGS_AD_LOCATION_ADDR
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_LOCATION_ADDR, object_name:IGS_AD_LOCATION_ADDR, status:VALID,
-
VIEW: APPS.IGS_AD_LOCATION_ADDR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_LOCATION_ADDR_V, object_name:IGS_AD_LOCATION_ADDR_V, status:VALID,
-
APPS.IGS_AD_LOCVENUE_ADDR_PKG dependencies on IGS_AD_LOCVENUE_ADDR
12.1.1
-
APPS.IGS_GE_GEN_001 dependencies on IGS_AD_LOCVENUE_ADDR
12.1.1
-
APPS.IGS_AS_VAL_VEA dependencies on IGS_AD_LOCVENUE_ADDR
12.1.1
-
APPS.IGS_AS_VAL_VEA dependencies on IGS_AD_LOCVENUE_ADDR
12.1.1
-
APPS.IGS_GE_GEN_002 dependencies on IGS_AD_LOCVENUE_ADDR
12.1.1
-
12.1.1 DBA Data
12.1.1
-
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
-
PACKAGE BODY: APPS.IGS_GE_GEN_001
12.1.1
-
12.1.1 DBA Data
12.1.1