Search Results other_details_2
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.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 ,
-
View: IGS_OR_INST_ADDR
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_OR_INST_ADDR, object_name:IGS_OR_INST_ADDR, status:VALID, product: IGS - Student System , description: IGS_OR_INST_ADDR is used to capture the address of the institution. , implementation_dba_data: APPS.IGS_OR_INST_ADDR ,
-
View: IGS_AD_RELADDR_INT
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AD_ADDR_INT
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
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: APPS.IGS_AD_ADDR_INT
12.1.1
-
View: IGS_AD_RELADDR_INT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_RELADDR_INT, object_name:IGS_AD_RELADDR_INT, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_AD_RELADDR_INT ,
-
View: IGS_AD_ADDR_INT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_ADDR_INT, object_name:IGS_AD_ADDR_INT, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_AD_ADDR_INT ,
-
View: IGS_OR_INST_ADDR
12.2.2
product: IGS - Student System (Obsolete) , description: IGS_OR_INST_ADDR is used to capture the address of the institution. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_OR_ADDR
12.1.1
-
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,
-
VIEW: APPS.IGS_OR_INST_ADDR
12.1.1
-
TABLE: IGS.IGS_OR_ADR_INT_OLD
12.1.1
owner:IGS, object_type:TABLE, object_name:IGS_OR_ADR_INT_OLD, status:VALID,
-
VIEW: APPS.IGS_AD_RELADDR_INT
12.1.1
-
View: IGS_PE_SS_ADDR_V
12.2.2
product: IGS - Student System (Obsolete) , description: This Entity stores the Address of a Person created from Self Service Application , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PE_SS_ADDR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_SS_ADDR_V, object_name:IGS_PE_SS_ADDR_V, status:VALID, product: IGS - Student System , description: This Entity stores the Address of a Person created from Self Service Application , implementation_dba_data: APPS.IGS_PE_SS_ADDR_V ,
-
View: IGS_PE_API_ALT_PERS_ID_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_API_ALT_PERS_ID_V, object_name:IGS_PE_API_ALT_PERS_ID_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PE_API_ALT_PERS_ID_V ,
-
VIEW: APPS.IGS_AD_RELADDR_INT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_RELADDR_INT, object_name:IGS_AD_RELADDR_INT, status:VALID,
-
VIEW: APPS.IGS_PE_SS_ADDR_V
12.1.1
-
VIEW: APPS.IGS_AD_ADDR_INT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_ADDR_INT, object_name:IGS_AD_ADDR_INT, status:VALID,
-
View: IGS_PE_PERSON_ADDR
12.2.2
product: IGS - Student System (Obsolete) , description: IGS_PE_PERSON_ADDR describes the address information of a person , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PE_ADDR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_ADDR_V, object_name:IGS_PE_ADDR_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PE_ADDR_V ,
-
View: IGS_PE_ADDR_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
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,
-
TABLE: IGS.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,
-
View: IGS_PE_API_ALT_PERS_ID_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
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_PE_API_ALT_PERS_ID_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_API_ALT_PERS_ID_V, object_name:IGS_PE_API_ALT_PERS_ID_V, status:VALID,
-
View: IGS_GR_VENUE_ADDR
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PE_PERSON_ADDR_V
12.2.2
product: IGS - Student System (Obsolete) , description: IGS_PE_PERSON_ADDR_V describes the person address details , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PE_PERSON_ADDR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_PERSON_ADDR_V, object_name:IGS_PE_PERSON_ADDR_V, status:VALID, product: IGS - Student System , description: IGS_PE_PERSON_ADDR_V describes the person address details , implementation_dba_data: APPS.IGS_PE_PERSON_ADDR_V ,
-
View: IGS_PE_PERSON_ADDR
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_PERSON_ADDR, object_name:IGS_PE_PERSON_ADDR, status:VALID, product: IGS - Student System , description: IGS_PE_PERSON_ADDR describes the address information of a person , implementation_dba_data: APPS.IGS_PE_PERSON_ADDR ,
-
VIEW: APPS.IGS_PE_PERSON_ADDR
12.1.1
-
VIEW: APPS.IGS_PE_PERSON_ADDR_V
12.1.1
-
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 ,
-
TABLE: IGS.IGS_OR_ADR_INT
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_OR_ADR_INT, object_name:IGS_OR_ADR_INT, 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: APPS.IGS_PE_API_ALT_PERS_ID_V
12.1.1
-
TABLE: IGS.IGS_AD_ADDR_INT_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_ADDR_INT_ALL, object_name:IGS_AD_ADDR_INT_ALL, 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: 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,
-
VIEW: APPS.IGS_PE_ADDR_V
12.1.1
-
VIEW: APPS.IGS_OR_INST_ADDR
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_OR_INST_ADDR, object_name:IGS_OR_INST_ADDR, status:VALID,
-
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 ,
-
TABLE: IGS.IGS_AD_RELADDR_INT_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_RELADDR_INT_ALL, object_name:IGS_AD_RELADDR_INT_ALL, 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,
-
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 ,