Search Results igs_ad_addrusage_int
Overview
The IGS_AD_ADDRUSAGE_INT view is a public synonym-backed dictionary view owned by the APPS schema in Oracle E-Business Suite, delivered as part of the IGS – Student System product family. It exposes the address usage interface staging area that the Student System (and by extension the Trading Community Architecture/Receivables address model) uses to load or update address usage assignments in batch from external or feeder systems. In EBS 12.1.1 and 12.2.2, this view is a thin passthrough layer over the IGS_AD_ADDRUSAGE_INT_ALL base table, presenting the same column set plus a synthesized ROW_ID derived from the underlying table's physical row identifier.
The view is primarily relevant to reporting and integration development rather than to end-user forms. It allows developers, interface programs, and reconciliation reports to query address usage interface records without addressing the _ALL table directly, and it participates in the standard EBS multi-tenant style of interface tables where ORG_ID and the interface primary key columns drive concurrent-program processing. Because it is a view and not a table, it carries no independent constraints, indexes, or DDL of its own; all integrity rules live on the underlying table.
Underlying Base Objects
The object is defined over a single documented base object, IGS_AD_ADDRUSAGE_INT_ALL. The view text is a straightforward projection:
ROW_IDis not a stored column; it is derived fromTAB.ROWIDof the base table, giving each row a stable physical identifier for the session.- All remaining columns —
INTERFACE_ADDR_ID,INTERFACE_ADDRUSAGE_ID,ORG_ID,SITE_USE_CODE,COMMENTS,STATUS,ERROR_CODE,MATCH_IND, and the standard WHO columns (CREATED_BY,CREATION_DATE,LAST_UPDATED_BY,LAST_UPDATE_DATE,LAST_UPDATE_LOGIN) plus the concurrent-program columns (REQUEST_ID,PROGRAM_APPLICATION_ID,PROGRAM_ID,PROGRAM_UPDATE_DATE) — map one-to-one to base table columns.
No other base tables, views, or synonyms are documented as referenced by this view. Because the view is a simple one-to-one projection, it is inherently updatable under Oracle's rules for simple views, and DML through the view resolves to the underlying table for rows that satisfy the key-preserved conditions.
Key Columns
The columns most relevant to interface development and reconciliation are:
INTERFACE_ADDR_ID— the interface address identifier, the key that the user search "interface_addr_id" targets. It links the usage record to the address row being loaded.INTERFACE_ADDRUSAGE_ID— the interface primary key for the address usage record itself.SITE_USE_CODE— the usage code (for example, a billing, shipping, or other site use classification) to be applied to the address.STATUSandERROR_CODE— the interface processing outcome;STATUSindicates whether the row is pending, processed, or in error, whileERROR_CODEcarries the validation failure code when import fails.MATCH_IND— indicates whether the row was matched to an existing usage or represents a new insertion.ORG_ID— the operating unit / organization context, essential when the same interface table serves multiple organizations.- The WHO and concurrent-program columns (
REQUEST_ID,PROGRAM_ID,PROGRAM_APPLICATION_ID,PROGRAM_UPDATE_DATE) — used to trace which concurrent request loaded each row.
Common Use Cases and Queries
Typical scenarios include troubleshooting a failed address usage import, reconciling pending interface rows before running the Student System address load, and auditing which request introduced a given usage record. A common query filters on the interface address identifier the user searched for:
SELECT interface_addr_id, interface_addrusage_id, site_use_code,
status, error_code, match_ind, org_id, request_id
FROM apps.igs_ad_addrusage_int
WHERE interface_addr_id = :p_interface_addr_id;
A second pattern identifies all rows still awaiting processing:
SELECT interface_addr_id, site_use_code, status, error_code
FROM apps.igs_ad_addrusage_int
WHERE status <> 'PROCESSED'
ORDER BY creation_date;
A third reconciles a specific concurrent request:
SELECT request_id, program_id, interface_addr_id, status, error_code
FROM apps.igs_ad_addrusage_int
WHERE request_id = :p_request_id;
Because the view is read-mostly in practice, queries should be limited by ORG_ID, INTERFACE_ADDR_ID, or REQUEST_ID to avoid full scans of what is typically a high-volume interface table. Error rows should be inspected via ERROR_CODE and corrected either through the standard interface API or by direct DML on the base table where the view is key-preserving.
-
View: IGS_AD_ADDRUSAGE_INT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_ADDRUSAGE_INT, object_name:IGS_AD_ADDRUSAGE_INT, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_AD_ADDRUSAGE_INT ,
-
View: IGS_AD_ADDRUSAGE_INT
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_AD_IMP_MATCHES_PA_V
12.1.1
-
VIEW: APPS.IGS_AD_IMP_MATCHES_PPA_V
12.1.1
-
SYNONYM: APPS.IGS_AD_ADDRUSAGE_INT_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_AD_ADDRUSAGE_INT_ALL, status:VALID,
-
View: IGS_AD_IMP_MATCHES_PA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_IMP_MATCHES_PA_V, object_name:IGS_AD_IMP_MATCHES_PA_V, status:VALID, product: IGS - Student System , description: Gets the person details for the import process from the interface tables , implementation_dba_data: APPS.IGS_AD_IMP_MATCHES_PA_V ,
-
PACKAGE BODY: APPS.IGR_IMP_001
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGR_IMP_001, status:VALID,
-
View: IGS_AD_IMP_MATCHES_PA_V
12.2.2
product: IGS - Student System (Obsolete) , description: Gets the person details for the import process from the interface tables , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AD_IMP_MATCHES_PPA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_IMP_MATCHES_PPA_V, object_name:IGS_AD_IMP_MATCHES_PPA_V, status:VALID, product: IGS - Student System , description: Gets the person details for the import process from the interface and person address tables , implementation_dba_data: APPS.IGS_AD_IMP_MATCHES_PPA_V ,
-
View: IGS_AD_IMP_MATCHES_PPA_V
12.2.2
product: IGS - Student System (Obsolete) , description: Gets the person details for the import process from the interface and person address tables , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_AD_ADDRUSAGE_INT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_ADDRUSAGE_INT, object_name:IGS_AD_ADDRUSAGE_INT, status:VALID,
-
PACKAGE BODY: APPS.IGS_AD_IMP_002
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AD_IMP_002, status:VALID,
-
VIEW: APPS.IGS_AD_IMP_MATCHES_PPA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_IMP_MATCHES_PPA_V, object_name:IGS_AD_IMP_MATCHES_PPA_V, status:VALID,
-
VIEW: APPS.IGS_AD_IMP_MATCHES_PA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_IMP_MATCHES_PA_V, object_name:IGS_AD_IMP_MATCHES_PA_V, status:VALID,
-
APPS.IGR_IMP_001 SQL Statements
12.1.1
-
APPS.IGR_IMP_001 dependencies on IGS_AD_ADDRUSAGE_INT
12.1.1
-
APPS.IGS_AD_IMP_002 dependencies on IGS_AD_ADDRUSAGE_INT
12.1.1
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.IGR_IMP_001
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
APPS.IGR_IMP_001 dependencies on IGR_IS_ADDRESS
12.1.1
-
APPS.IGR_IMP_001 dependencies on FND_MESSAGE
12.1.1
-
APPS.IGS_PE_PERS_IMP_001 dependencies on IGS_AD_ADDRUSAGE_INT_ALL
12.1.1
-
APPS.IGR_IMP_001 dependencies on FND_FILE
12.1.1
-
APPS.IGS_PE_PERS_IMP_001 dependencies on IGS_AD_STAT_INT_ALL
12.1.1
-
APPS.IGS_PE_PERS_IMP_001 SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_PE_PERS_IMP_001
12.1.1
-
APPS.IGS_PE_PERS_IMP_001 dependencies on IGS_AD_INTERFACE_ALL
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'. ,