Search Results igs_or_addr
Overview
IGS_OR_ADDR is an Oracle E-Business Suite (EBS) database view owned by the APPS schema and registered as a VALID object under the IGS – Student System product family. In release 12.1.1 and 12.2.2, its documented purpose is to capture the details of an address as maintained within the Student System model. Functionally, the view consolidates party, party-site, site-use, and location data into a single flattened address record that exposes legacy-style column names (ADDR_LINE_1 through ADDR_LINE_4, CORRESPONDENCE_IND, OTHER_DETAILS_1 through OTHER_DETAILS_3) expected by Student System forms, concurrent programs, reports, and inbound/outbound interfaces.
The view is a compatibility and reporting layer over the Trading Community Architecture (TCA) model. Because TCA normalizes addresses across HZ_PARTY_SITES, HZ_LOCATIONS, and HZ_PARTY_SITE_USES, the view re-presents that normalized data using the naming conventions historically required by IGS components. It is read-oriented; it is not a table and therefore carries no indexes of its own. Consumers that filter on high-volume columns should expect the optimizer to push predicates to the underlying TCA tables, and performance tuning is generally performed there rather than on the view.
The user search term "other_details_1" maps directly to a column exposed by this view. In IGS_OR_ADDR, OTHER_DETAILS_1, OTHER_DETAILS_2, and OTHER_DETAILS_3 are projected as NULL literals rather than being sourced from a physical column. Consequently, these attributes are placeholders in the documented view definition and return no data.
Underlying Base Objects
The documented view text defines IGS_OR_ADDR over five referenced base objects. The ETRM metadata records that no base objects are separately documented, but the view SQL itself establishes the following relationships:
- IGS_OR_INST_ORG_BASE_V (alias HP) — supplies PARTY_ID, PARTY_NUMBER, and the OU-level START_DT mapped to OU_START_DT.
- HZ_PARTY_SITES (alias HPS) — the primary TCA party-site source, joined on PARTY_ID; provides ROWID as ROW_ID, IDENTIFYING_ADDRESS_FLAG, and STATUS.
- IGS_PE_HZ_PTY_SITES (alias IGSPS) — the IGS extension table for party sites, supplying START_DATE and END_DATE (START_DT and END_DT) via an outer join on PARTY_SITE_ID.
- HZ_LOCATIONS (alias HL) — the address master, providing ADDRESS1–ADDRESS4, CITY, STATE, PROVINCE, COUNTY, COUNTRY, POSTAL_CODE, DELIVERY_POINT_CODE, and the audit columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN).
- HZ_PARTY_SITE_USES (alias PSU) — outer-joined to provide SITE_USE_TYPE, exposed as ADDR_TYPE.
Joins between HPS/HL, HPS/IGSPS, and HPS/PSU are performed on PARTY_ID, LOCATION_ID, and PARTY_SITE_ID respectively, with the IGSPS and PSU joins defined as outer joins. This means address rows may be returned without a matching IGS party-site extension or site-use record.
Key Columns
- ROW_ID — the HZ_PARTY_SITES ROWID, useful for direct row addressing.
- ORG_UNIT_CD / OU_START_DT — organizational context, derived from PARTY_NUMBER and the institution-org base view.
- START_DT / END_DT — effective dating from the IGS party-site extension; may be null where no IGS extension exists.
- ADDR_TYPE — the site-use type.
- ADDR_LINE_1 … ADDR_LINE_4 — address lines sourced from HZ_LOCATIONS.ADDRESS1–ADDRESS4.
- DATE_LAST_VERIFIED, CORRESPONDENCE_IND — verification date (projected as NULL) and the identifying-address flag.
- CITY, STATE, PROVINCE, COUNTY, COUNTRY, POSTAL_CODE, DELIVERY_POINT_CODE — location geography attributes.
- OTHER_DETAILS_1, OTHER_DETAILS_2, OTHER_DETAILS_3 — projected as NULL; retained for interface compatibility with legacy address structures. Queries filtering on other_details_1 will return no matching rows unless the predicate tests for NULL.
- REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE — concurrent-program audit context inherited from HZ_LOCATIONS.
- STATUS — party-site status from HZ_PARTY_SITES.
Common Use Cases and Queries
Typical uses include extracting student or organization address data for reports, validating address completeness against TCA, and feeding downstream interfaces. A basic retrieval filtered by party number:
- SELECT party_number, addr_type, addr_line_1, city, state, postal_code, status FROM apps.igs_or_addr WHERE party_number = :p_party_number;
- SELECT * FROM apps.igs_or_addr WHERE other_details_1 IS NOT NULL; — note this returns no rows, since OTHER_DETAILS_1 is a NULL literal.
- SELECT org_unit_cd, start_dt, end_dt, addr_line_1 FROM apps.igs_or_addr WHERE site_use_type = 'HOME' AND status = 'A';
-
View: IGS_OR_ADDR
12.2.2
product: IGS - Student System (Obsolete) , description: IGS_OR_ADDR is used to capture the details of address. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_OR_ADDR
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_OR_ADDR, object_name:IGS_OR_ADDR, status:VALID, product: IGS - Student System , description: IGS_OR_ADDR is used to capture the details of address. , implementation_dba_data: APPS.IGS_OR_ADDR ,
-
APPS.IGS_OR_ADDR_PKG SQL Statements
12.1.1
-
APPS.IGS_OR_VAL_OA SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_OR_ADDR_PKG
12.1.1
-
PACKAGE BODY: APPS.IGS_OR_VAL_OA
12.1.1
-
SYNONYM: APPS.IGS_PE_HZ_PTY_SITES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_PE_HZ_PTY_SITES, status:VALID,
-
PACKAGE BODY: APPS.IGS_OR_VAL_OA
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_OR_VAL_OA, status:VALID,
-
PACKAGE BODY: APPS.IGS_OR_ADDR_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_OR_ADDR_PKG, status:VALID,
-
PACKAGE BODY: APPS.IGS_GE_GEN_002
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_GE_GEN_002, status:VALID,
-
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: APPS.IGS_OR_ADDR
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_OR_ADDR, object_name:IGS_OR_ADDR, status:VALID,
-
APPS.IGS_GE_GEN_002 SQL Statements
12.1.1
-
APPS.IGS_GE_GEN_001 SQL Statements
12.1.1
-
VIEW: APPS.IGS_OR_INST_ORG_BASE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_OR_INST_ORG_BASE_V, object_name:IGS_OR_INST_ORG_BASE_V, status:VALID,
-
SYNONYM: APPS.HZ_PARTY_SITE_USES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_PARTY_SITE_USES, status:VALID,
-
APPS.IGS_OR_VAL_OA dependencies on IGS_OR_ADDR
12.1.1
-
APPS.IGS_GE_GEN_002 dependencies on IGS_OR_ADDR
12.1.1
-
APPS.IGS_GE_GEN_001 dependencies on IGS_OR_ADDR
12.1.1
-
APPS.IGS_OR_ADDR_PKG dependencies on IGS_OR_ADDR
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
SYNONYM: APPS.HZ_LOCATIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_LOCATIONS, status:VALID,
-
SYNONYM: APPS.HZ_PARTY_SITES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_PARTY_SITES, status:VALID,
-
PACKAGE BODY: APPS.IGS_GE_GEN_001
12.1.1
-
PACKAGE BODY: APPS.IGS_GE_GEN_002
12.1.1
-
APPS.IGS_OR_VAL_OA dependencies on IGS_CO_ADDR_TYPE
12.1.1
-
APPS.IGS_OR_VAL_OA dependencies on IGS_GE_DATE
12.1.1
-
APPS.IGS_GE_GEN_002 dependencies on IGS_OR_UNIT
12.1.1
-
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'. ,
-
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'. ,