Search Results interface_relations_id
Overview
APPS.IGS_AD_REL_CON_INT is a reporting and integration view in the Oracle E-Business Suite student system (the IGS product family, associated with Oracle Student System / Admissions). It exposes the contents of the interface staging table IGS_AD_REL_CON_INT_ALL, which holds contact point information — e-mail addresses and telephone numbers — destined for validation and loading against admissions relations records. In the EBS architecture the "AD" prefix denotes admissions, "REL" denotes relations (for example applicant or person relationships), and "CON_INT" denotes the contact interface. The view is read primarily by concurrent programs and PL/SQL APIs that reconcile staged contact data, set match and error indicators, and then transfer the surviving rows into the permanent contact tables.
The view is a thin projection rather than a transformation: it performs no joins and applies no filtering, so each row corresponds one-to-one with a row in the underlying _ALL table. The object is defined over an org-striped (multi-org) table, hence the presence of ORG_ID and the _ALL suffix. The user search term interface_relations_id identifies the foreign key that links a staged contact point to its parent interface relations record.
Underlying Base Objects
The documented definition resolves entirely to a single base object: IGS_AD_REL_CON_INT_ALL. The view text is expressed in the form SELECT tab.rowid row_id, ... FROM igs_ad_rel_con_int_all tab, which confirms that the ROWID of the base table is made available as ROW_ID. This ROW_ID mirrors the ROWID pseudo-column referenced in the OAF/ADF view object definition, allowing the framework to navigate the underlying rows despite the multi-org WHERE clause that EBS applies at runtime. Because the view is not a join, no other documented base objects are referenced; validation against relations, contact point types, and phone or e-mail formats occurs in the calling concurrent program rather than in the view itself.
Key Columns
- INTERFACE_RELATIONS_ID — the parent relations interface identifier. This is the column the user searched for; it associates each staged contact point with its relations record.
- INTERFACE_REL_CON_ID — unique identifier for the interface contact point row itself.
- ORG_ID — operating unit, supporting multi-org security.
- CONTACT_POINT_TYPE — indicates whether the row carries an e-mail address or a telephone number.
- EMAIL_ADDRRESS, EMAIL_FORMAT — the e-mail address (note the internal spelling) and its format code.
- PHONE_LINE_TYPE, PHONE_COUNTRY_CODE, PHONE_AREA_CODE, PHONE_NUMBER, PHONE_EXTENSION — the telephone components.
- PRIMARY_FLAG — marks the preferred contact point.
- STATUS, MATCH_IND, ERROR_CODE, DUP_CONTACT_POINT_ID — validation and reconciliation columns populated by the import process.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — standard WHO audit columns.
- REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE — concurrent request identifiers identifying the program that last touched the row.
- ROW_ID — the base table ROWID, used by the view object for row navigation.
Common Use Cases and Queries
Typical uses include diagnosing failed contact imports, auditing which phone and e-mail rows remain unvalidated, and confirming the relations parent for a staged contact point. A representative query listing problematic rows is:
SELECT interface_rel_con_id, interface_relations_id, contact_point_type,
email_addrress, phone_number, status, match_ind, error_code
FROM apps.igs_ad_rel_con_int
WHERE org_id = :p_org_id
AND status = 'ERROR'
AND error_code IS NOT NULL;
To inspect all contacts for a given relations record:
SELECT c.interface_rel_con_id, c.contact_point_type, c.primary_flag,
c.email_addrress, c.phone_number, c.status
FROM apps.igs_ad_rel_con_int c
WHERE c.interface_relations_id = :p_interface_relations_id;
Because the view exposes REQUEST_ID and the PROGRAM_* columns, it is also useful for correlating staged contact rows with the concurrent request that generated or last updated them, a common step when troubleshooting import programs in EBS 12.1.1 and 12.2.2.
-
VIEW: APPS.IGS_AD_REL_CON_INT
12.1.1
-
View: IGS_AD_REL_CON_INT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_REL_CON_INT, object_name:IGS_AD_REL_CON_INT, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_AD_REL_CON_INT ,
-
View: IGS_AD_RELATIONS_INT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_RELATIONS_INT, object_name:IGS_AD_RELATIONS_INT, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_AD_RELATIONS_INT ,
-
VIEW: APPS.IGS_AD_REL_CON_INT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_REL_CON_INT, object_name:IGS_AD_REL_CON_INT, status:VALID,
-
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_RELEMP_INT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_RELEMP_INT, object_name:IGS_AD_RELEMP_INT, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_AD_RELEMP_INT ,
-
View: IGS_AD_RELEMP_INT
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AD_REL_CON_INT
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AD_RELACAD_INT
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AD_RELACAD_INT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_RELACAD_INT, object_name:IGS_AD_RELACAD_INT, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_AD_RELACAD_INT ,
-
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_AD_RELATIONS_INT
12.1.1
-
VIEW: APPS.IGS_AD_RELEMP_INT
12.1.1
-
VIEW: APPS.IGS_AD_RELACAD_INT
12.1.1
-
View: IGS_AD_RELATIONS_INT
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_AD_RELADDR_INT
12.1.1
-
View: IGS_AD_RELADDR_INT
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
TABLE: IGS.IGS_AD_RELEMP_INT_ALL_OLD
12.1.1
owner:IGS, object_type:TABLE, object_name:IGS_AD_RELEMP_INT_ALL_OLD, status:VALID,
-
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_AD_RELEMP_INT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_RELEMP_INT, object_name:IGS_AD_RELEMP_INT, status:VALID,
-
VIEW: APPS.IGS_AD_RELACAD_INT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_RELACAD_INT, object_name:IGS_AD_RELACAD_INT, status:VALID,
-
TABLE: IGS.IGS_AD_RELEMP_INT_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_RELEMP_INT_ALL, object_name:IGS_AD_RELEMP_INT_ALL, status:VALID,
-
TABLE: IGS.IGS_AD_REL_CON_INT_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_REL_CON_INT_ALL, object_name:IGS_AD_REL_CON_INT_ALL, status:VALID,
-
TABLE: IGS.IGS_AD_RELACAD_INT_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_RELACAD_INT_ALL, object_name:IGS_AD_RELACAD_INT_ALL, status:VALID,
-
Table: IGS_AD_RELATIONS_INT_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_RELATIONS_INT_ALL, object_name:IGS_AD_RELATIONS_INT_ALL, status:VALID, product: IGS - Student System , description: Contains information about person's relationship details , implementation_dba_data: IGS.IGS_AD_RELATIONS_INT_ALL ,
-
VIEW: APPS.IGS_AD_RELATIONS_INT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_RELATIONS_INT, object_name:IGS_AD_RELATIONS_INT, status:VALID,
-
Table: IGS_AD_RELATIONS_INT_ALL
12.2.2
product: IGS - Student System (Obsolete) , description: Contains information about person's relationship details , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_AD_IMP_008 SQL Statements
12.1.1
-
TABLE: IGS.IGS_AD_RELATIONS_INT_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_RELATIONS_INT_ALL, object_name:IGS_AD_RELATIONS_INT_ALL, status:VALID,
-
TABLE: IGS.IGS_AD_IMP_NEAR_MTCH_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_IMP_NEAR_MTCH_ALL, object_name:IGS_AD_IMP_NEAR_MTCH_ALL, status:VALID,
-
APPS.IGS_AD_IMP_NEAR_MTCH_PKG SQL Statements
12.1.1
-
APPS.IGS_PE_IDENTIFY_DUPS SQL Statements
12.1.1
-
PACKAGE: APPS.IGS_PE_IDENTIFY_DUPS
12.1.1
-
PACKAGE BODY: APPS.IGS_AD_IMP_008
12.1.1
-
PACKAGE BODY: APPS.IGS_AD_IMP_NEAR_MTCH_PKG
12.1.1
-
APPS.IGS_PE_PERS_IMP_001 SQL Statements
12.1.1
-
APPS.IGS_PE_IDENTIFY_DUPS dependencies on IGS_AD_RELATIONS_INT
12.1.1
-
APPS.IGS_AD_IMP_008 dependencies on IGS_AD_RELATIONS_INT_ALL
12.1.1
-
APPS.IGS_AD_IMP_008 dependencies on IGS_AD_RELATIONS_INT
12.1.1
-
APPS.IGS_AD_IMP_NEAR_MTCH_PKG dependencies on IGS_AD_IMP_NEAR_MTCH_S
12.1.1
-
APPS.IGS_PE_PERS_IMP_001 dependencies on IGS_AD_RELATIONS_INT_ALL
12.1.1
-
APPS.IGS_PE_IDENTIFY_DUPS dependencies on IGS_AD_IMP_NEAR_MTCH_ALL
12.1.1
-
APPS.IGS_AD_IMP_008 dependencies on IGS_GE_NUMBER
12.1.1
-
APPS.IGS_PE_IDENTIFY_DUPS dependencies on IGS_AD_INTERFACE
12.1.1
-
APPS.IGS_AD_IMP_008 dependencies on IGS_AD_RELACAD_INT
12.1.1
-
PACKAGE BODY: APPS.IGS_PE_PERS_IMP_001
12.1.1
-
APPS.IGS_AD_IMP_008 dependencies on IGS_AD_RELACAD_INT_ALL
12.1.1
-
PACKAGE BODY: APPS.IGS_PE_IDENTIFY_DUPS
12.1.1
-
APPS.IGS_AD_IMP_008 dependencies on IGS_AD_REL_CON_INT_ALL
12.1.1
-
APPS.IGS_AD_IMP_008 dependencies on IGS_AD_RELEMP_INT_ALL
12.1.1