Search Results interface_addrusage_id
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.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
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: APPS.IGS_AD_ADDRUSAGE_INT
12.1.1
-
Table: IGS_OR_ADRUSGE_INT
12.2.2
product: IGS - Student System (Obsolete) , description: Describes Interface Institution Address Usage Details. , implementation_dba_data: Not implemented in this database ,
-
TABLE: IGS.IGS_OR_ADRUSGE_INT
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_OR_ADRUSGE_INT, object_name:IGS_OR_ADRUSGE_INT, status:VALID,
-
TABLE: IGS.IGS_OR_ADRUSGE_INT_OLD
12.1.1
owner:IGS, object_type:TABLE, object_name:IGS_OR_ADRUSGE_INT_OLD, status:VALID,
-
TABLE: IGS.IGS_AD_ADDRUSAGE_INT_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_ADDRUSAGE_INT_ALL, object_name:IGS_AD_ADDRUSAGE_INT_ALL, status:VALID,
-
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,
-
Table: IGS_OR_ADRUSGE_INT
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_OR_ADRUSGE_INT, object_name:IGS_OR_ADRUSGE_INT, status:VALID, product: IGS - Student System , description: Describes Interface Institution Address Usage Details. , implementation_dba_data: IGS.IGS_OR_ADRUSGE_INT ,
-
Table: IGS_AD_ADDRUSAGE_INT_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_ADDRUSAGE_INT_ALL, object_name:IGS_AD_ADDRUSAGE_INT_ALL, status:VALID, product: IGS - Student System , description: Holds information about person's address usages , implementation_dba_data: IGS.IGS_AD_ADDRUSAGE_INT_ALL ,
-
Table: IGS_AD_ADDRUSAGE_INT_ALL
12.2.2
product: IGS - Student System (Obsolete) , description: Holds information about person's address usages , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_AD_IMP_002 SQL Statements
12.1.1
-
APPS.IGS_UC_EXP_APPLICANT_DTLS SQL Statements
12.1.1
-
APPS.IGS_AD_ACT_ASSESSMENTS_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_AD_IMP_002
12.1.1
-
APPS.IGR_IMP_001 SQL Statements
12.1.1
-
APPS.IGS_AD_IMP_002 dependencies on IGS_AD_ADDRUSAGE_INT_ALL
12.1.1
-
APPS.IGS_OR_INST_IMP_003_PKG SQL Statements
12.1.1
-
APPS.IGS_AD_IMP_002 dependencies on IGS_AD_ADDRUSAGE_INT
12.1.1
-
APPS.IGS_UC_EXP_APPLICANT_DTLS dependencies on IGS_AD_ADDRUSAGE_INT_ALL
12.1.1
-
APPS.IGS_AD_ACT_ASSESSMENTS_PKG dependencies on IGS_AD_ADDRUSAGE_INT_ALL
12.1.1
-
APPS.IGS_OR_INST_IMP_003_PKG dependencies on IGS_OR_ADRUSGE_INT
12.1.1
-
APPS.IGS_AD_ACT_ASSESSMENTS_PKG dependencies on IGS_AD_ADDR_INT_ALL
12.1.1
-
APPS.IGS_AD_IMP_002 dependencies on IGS_AD_ADDR_INT_ALL
12.1.1
-
APPS.IGS_AD_IMP_002 dependencies on IGS_AD_ADDR_INT
12.1.1
-
PACKAGE BODY: APPS.IGR_IMP_001
12.1.1
-
PACKAGE BODY: APPS.IGS_AD_ACT_ASSESSMENTS_PKG
12.1.1
-
PACKAGE BODY: APPS.IGS_UC_EXP_APPLICANT_DTLS
12.1.1
-
APPS.IGS_OR_INST_IMP_003_PKG dependencies on IGS_OR_ADR_INT
12.1.1
-
APPS.IGS_AD_IMP_002 dependencies on IGS_AD_IMP_001
12.1.1
-
PACKAGE BODY: APPS.IGS_OR_INST_IMP_003_PKG
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'. ,