Search Results sv_us_addr
Overview
IGS_SV_EV_EDT_US_ADDR_V is a reporting view in the Oracle EBS Student System (IGS) schema, owned by APPS. It exposes United States mailing address records that have been staged for extraction and processing within the Student System batch summary framework. The view is part of the address event data extraction layer (indicated by the "EV" and "EDT" fragments in its name — event edit/extract), which consolidates individual address records against batch-level administrative actions so downstream processes, interfaces, or reports can retrieve only addresses flagged for a specific action.
The name fragment "SV_US_ADDR" corresponds directly to the TAG_CODE value used in its definition, and "SV" denotes the Student System view namespace. The view therefore acts as a filtered, join-resolved projection over the address staging table, returning only United States addresses whose associated batch summary row carries the tag code SV_US_ADDR and an admission action code of SEND. This makes the view a convenient data source for third-party US address validation or mailing interfaces without requiring the calling process to re-implement the join and filter logic.
Underlying Base Objects
The view is defined over two documented base tables:
- IGS_SV_ADDRESSES (aliased UADD) — the address staging table holding person-level address lines, city, state, postal code, and postal routing code.
- IGS_SV_BTCH_SUMMARY (aliased ADDSUMM) — the batch summary table that tracks administrative actions and tag codes applied to each person and batch.
The two tables are joined on BATCH_ID and PERSON_ID. The view applies three filters on the address table (ADDRESS_TYPE = 'U', ACTIVITY_SITE_CD IS NULL) and two on the batch summary table (TAG_CODE = 'SV_US_ADDR', ADM_ACTION_CODE = 'SEND'). No other documented base objects are referenced, and the join is an inner join, so rows appear only when a matching summary record exists with the required tag and action codes.
Key Columns
- BATCH_ID — Identifier of the processing batch to which the address and summary record belong; links the two base tables.
- PERSON_ID — The person (student or applicant) to whom the address belongs.
- ADDRESS_LINE1 / ADDRESS_LINE2 — Free-form street address lines typical of US postal formats.
- CITY — City or locality name.
- STATE — US state code or name as stored.
- POSTAL_CODE — ZIP code, including ZIP+4 where applicable.
- POSTAL_ROUTING_CODE — Additional routing information used for delivery or barcode generation.
The view deliberately excludes address_type and activity_site_cd, since both are fixed by the WHERE clause, leaving only the descriptive address fields needed by consumers.
Common Use Cases and Queries
Typical scenarios include extracting US addresses for a mailing house, feeding an address-cleansing or validation service, or auditing which persons in a batch were queued for the SEND action. A basic query retrieving all staged US addresses for a given batch is:
SELECT BATCH_ID, PERSON_ID, ADDRESS_LINE1, ADDRESS_LINE2, CITY, STATE, POSTAL_CODE, POSTAL_ROUTING_CODE FROM APPS.IGS_SV_EV_EDT_US_ADDR_V WHERE BATCH_ID = :p_batch_id;SELECT PERSON_ID, CITY, STATE, POSTAL_CODE FROM APPS.IGS_SV_EV_EDT_US_ADDR_V WHERE POSTAL_CODE LIKE '9%' ORDER BY STATE, CITY;SELECT BATCH_ID, COUNT(*) FROM APPS.IGS_SV_EV_EDT_US_ADDR_V GROUP BY BATCH_ID;
Because the view joins two staging tables and applies rigid filter values, query performance depends on indexes on IGS_SV_ADDRESSES(BATCH_ID, PERSON_ID) and IGS_SV_BTCH_SUMMARY(BATCH_ID, PERSON_ID, TAG_CODE, ADM_ACTION_CODE). Consumers should supply BATCH_ID or PERSON_ID predicates wherever possible and avoid treating the view as a general-purpose address master, as it returns only records already tagged SV_US_ADDR with a SEND action and no activity site. In Oracle EBS 12.1.1 and 12.2.2 the object is read-only and intended for SELECT access only.
-
VIEW: APPS.IGS_SV_EV_EDT_US_ADDR_V
12.1.1
-
VIEW: APPS.IGS_SV_EDT_USADDR_V
12.1.1
-
VIEW: APPS.IGS_SV_EV_VAL_USADDRS_V
12.1.1
-
VIEW: APPS.IGS_SV_CRT_STDT_USADDR_V
12.1.1
-
VIEW: APPS.IGS_SV_EV_VALDTE_DUM_V
12.1.1
-
VIEW: APPS.IGS_SV_EDT_PERS_BLK_V
12.1.1
-
VIEW: APPS.IGS_SV_STDNT_REG_BLK_V
12.1.1
-
View: IGS_SV_EV_VAL_USADDRS_V
12.2.2
product: IGS - Student System (Obsolete) , description: View for fetching US address details , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_SV_EV_EDT_EV_BLK_V
12.1.1
-
View: IGS_SV_EV_EDT_US_ADDR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_SV_EV_EDT_US_ADDR_V, object_name:IGS_SV_EV_EDT_US_ADDR_V, status:VALID, product: IGS - Student System , description: View for fetching modified US address information for Exchange Visitor students , implementation_dba_data: APPS.IGS_SV_EV_EDT_US_ADDR_V ,
-
View: IGS_SV_EV_VALDTE_DUM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_SV_EV_VALDTE_DUM_V, object_name:IGS_SV_EV_VALDTE_DUM_V, status:VALID, product: IGS - Student System , description: View for fetching information for validate element of XML , implementation_dba_data: APPS.IGS_SV_EV_VALDTE_DUM_V ,
-
View: IGS_SV_EDT_USADDR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_SV_EDT_USADDR_V, object_name:IGS_SV_EDT_USADDR_V, status:VALID, product: IGS - Student System , description: View for fetching US Address information , implementation_dba_data: APPS.IGS_SV_EDT_USADDR_V ,
-
View: IGS_SV_EV_EDT_US_ADDR_V
12.2.2
product: IGS - Student System (Obsolete) , description: View for fetching modified US address information for Exchange Visitor students , implementation_dba_data: Not implemented in this database ,
-
View: IGS_SV_EDT_USADDR_V
12.2.2
product: IGS - Student System (Obsolete) , description: View for fetching US Address information , implementation_dba_data: Not implemented in this database ,
-
View: IGS_SV_CRT_STDT_USADDR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_SV_CRT_STDT_USADDR_V, object_name:IGS_SV_CRT_STDT_USADDR_V, status:VALID, product: IGS - Student System , description: View for fetching US address information for the new Non-Immigrant students , implementation_dba_data: APPS.IGS_SV_CRT_STDT_USADDR_V ,
-
View: IGS_SV_EV_VAL_USADDRS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_SV_EV_VAL_USADDRS_V, object_name:IGS_SV_EV_VAL_USADDRS_V, status:VALID, product: IGS - Student System , description: View for fetching US address details , implementation_dba_data: APPS.IGS_SV_EV_VAL_USADDRS_V ,
-
View: IGS_SV_CRT_STDT_USADDR_V
12.2.2
product: IGS - Student System (Obsolete) , description: View for fetching US address information for the new Non-Immigrant students , implementation_dba_data: Not implemented in this database ,
-
View: IGS_SV_EV_VALDTE_DUM_V
12.2.2
product: IGS - Student System (Obsolete) , description: View for fetching information for validate element of XML , implementation_dba_data: Not implemented in this database ,
-
Lookup Type: IGS_SV_COMP_TREE
12.2.2
product: IGS - Student System (Obsolete) , meaning: Lookup type for SEVIS information types , description: Lookup type for SEVIS information types ,
-
Lookup Type: IGS_SV_COMP_TREE
12.1.1
product: IGS - Student System , meaning: Lookup type for SEVIS information types , description: Lookup type for SEVIS information types ,
-
VIEW: APPS.IGS_SV_EV_CRT_EV_BLK_V
12.1.1
-
View: IGS_SV_EV_EDT_EV_BLK_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_SV_EV_EDT_EV_BLK_V, object_name:IGS_SV_EV_EDT_EV_BLK_V, status:VALID, product: IGS - Student System , description: Edit Exchange Visitor Block View. , implementation_dba_data: APPS.IGS_SV_EV_EDT_EV_BLK_V ,
-
View: IGS_SV_EV_EDT_EV_BLK_V
12.2.2
product: IGS - Student System (Obsolete) , description: Edit Exchange Visitor Block View. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_SV_STDNT_REG_BLK_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_SV_STDNT_REG_BLK_V, object_name:IGS_SV_STDNT_REG_BLK_V, status:VALID, product: IGS - Student System , description: View for obtaining information for the XML block describing the students registration information. , implementation_dba_data: APPS.IGS_SV_STDNT_REG_BLK_V ,
-
View: IGS_SV_STDNT_REG_BLK_V
12.2.2
product: IGS - Student System (Obsolete) , description: View for obtaining information for the XML block describing the students registration information. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_SV_EDT_PERS_BLK_V
12.2.2
product: IGS - Student System (Obsolete) , description: View for obtaining information for the XML block describing the student personal information changes. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_SV_EDT_PERS_BLK_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_SV_EDT_PERS_BLK_V, object_name:IGS_SV_EDT_PERS_BLK_V, status:VALID, product: IGS - Student System , description: View for obtaining information for the XML block describing the student personal information changes. , implementation_dba_data: APPS.IGS_SV_EDT_PERS_BLK_V ,
-
View: IGS_SV_EV_CRT_EV_BLK_V
12.2.2
product: IGS - Student System (Obsolete) , description: Create Exchange Visitor Block View. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_SV_EV_CRT_EV_BLK_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_SV_EV_CRT_EV_BLK_V, object_name:IGS_SV_EV_CRT_EV_BLK_V, status:VALID, product: IGS - Student System , description: Create Exchange Visitor Block View. , implementation_dba_data: APPS.IGS_SV_EV_CRT_EV_BLK_V ,
-
PACKAGE BODY: APPS.IGS_SV_UTIL
12.1.1
-
APPS.IGS_SV_UTIL dependencies on IGS_SV_PRGMS_INFO
12.1.1
-
APPS.IGS_SV_NI_BATCH_PROCESS_PKG dependencies on IGS_SV_ADDRESSES
12.1.1
-
APPS.IGS_SV_NI_BATCH_PROCESS_PKG SQL Statements
12.1.1
-
APPS.IGS_SV_BATCH_PROCESS_PKG dependencies on IGS_SV_ADDRESSES
12.1.1
-
APPS.IGS_SV_BATCH_PROCESS_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_SV_NI_BATCH_PROCESS_PKG
12.1.1
-
PACKAGE BODY: APPS.IGS_SV_BATCH_PROCESS_PKG
12.1.1