Search Results igs_co_ou_co_all
Overview
The IGS_CO_OU_CO_ALL table is a core data object within the Oracle E-Business Suite (EBS) Student System (IGS). It functions as a junction or linking table that establishes and manages the relationship between a person (student or other party) and a specific correspondence item generated by the system. Its primary role is to track which correspondence documents have been issued to which individuals, serving as a critical audit and history table for student communications. As a multi-organization table (indicated by the "_ALL" suffix), it stores data across multiple operating units, adhering to the standard EBS security model. The table's existence is fundamental to the Correspondence module, enabling the system to query and report on the complete correspondence history for any person.
Key Information Stored
The table's structure is defined by its composite primary key, which uniquely identifies a single person-correspondence link. The key columns are PERSON_ID (linking to HZ_PARTIES to identify the individual), CORRESPONDENCE_TYPE, REFERENCE_NUMBER, and ISSUE_DT (collectively identifying the specific correspondence item from IGS_CO_ITM_ALL). Beyond these identifiers, the table includes foreign key columns that link to other related entities. The SPL_SEQUENCE_NUMBER column, in conjunction with CORRESPONDENCE_TYPE, links to the IGS_CO_S_LTR table for standard letter definitions. The TRACKING_ID column links to the IGS_TR_ITEM_ALL table, connecting the correspondence to a tracking item, likely for workflow or delivery status. The table also maintains a recursive relationship with IGS_CO_OU_CO_REF_ALL for tracking referenced or related correspondence links.
Common Use Cases and Queries
A primary use case is generating a complete history of all correspondence sent to a specific student, which is essential for student services and compliance reporting. Another common scenario involves identifying all recipients of a particular batch of letters (e.g., a specific financial aid notification) for follow-up or reporting purposes. Development and reporting often require joining this table to person and correspondence detail tables. A typical query pattern would be:
- SELECT hzp.party_name, icoa.* FROM igs_co_ou_co_all icoa JOIN hz_parties hzp ON icoa.person_id = hzp.party_id JOIN igs_co_itm_all icia ON icoa.correspondence_type = icia.correspondence_type AND icoa.reference_number = icia.reference_number WHERE icoa.person_id = :student_id ORDER BY icoa.issue_dt DESC;
This table is also central to any custom logic or interface that needs to programmatically associate a newly generated correspondence item with its intended recipient(s).
Related Objects
The IGS_CO_OU_CO_ALL table sits at the center of a network of foreign key relationships within the Student System. Its documented dependencies are:
- IGS_CO_ITM_ALL: Joined via CORRESPONDENCE_TYPE and REFERENCE_NUMBER. This is the primary relationship to the correspondence item header/details.
- HZ_PARTIES: Joined via PERSON_ID. This links the record to the Trading Community Architecture (TCA) to identify the person/student.
- IGS_CO_S_LTR: Joined via CORRESPONDENCE_TYPE and SPL_SEQUENCE_NUMBER. This links to the standard letter template used.
- IGS_TR_ITEM_ALL: Joined via TRACKING_ID. This connects the correspondence to a tracking record.
- IGS_CO_OU_CO_REF_ALL: This table references IGS_CO_OU_CO_ALL via its full primary key (PERSON_ID, CORRESPONDENCE_TYPE, REFERENCE_NUMBER, ISSUE_DT), establishing a parent-child relationship for tracking referenced correspondence links.
The primary key constraint IGS_CO_OU_CO_PK enforces uniqueness on the combination of these four key columns.
-
Table: IGS_CO_OU_CO_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_CO_OU_CO_ALL, object_name:IGS_CO_OU_CO_ALL, status:VALID, product: IGS - Student System , description: Describes link between person and correspondence item , implementation_dba_data: IGS.IGS_CO_OU_CO_ALL ,
-
Table: IGS_CO_OU_CO_ALL
12.2.2
product: IGS - Student System (Obsolete) , description: Describes link between person and correspondence item , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_CO_OU_CO_PKG dependencies on IGS_CO_OU_CO_ALL
12.1.1
-
APPS.IGS_CO_OU_CO_PKG dependencies on IGS_AS_VAL_SUAAP
12.1.1
-
APPS.IGS_CO_OU_CO_PKG SQL Statements
12.1.1
-
SYNONYM: APPS.IGS_CO_OU_CO_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_CO_OU_CO_ALL, status:VALID,
-
VIEW: APPS.IGS_CO_OU_CO
12.1.1
-
Table: IGS_CO_OU_CO_REF_ALL
12.2.2
product: IGS - Student System (Obsolete) , description: Holds specific person references for an outgoing correspondence item , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGS_CO_OU_CO_PKG
12.1.1
-
Table: IGS_CO_OU_CO_REF_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_CO_OU_CO_REF_ALL, object_name:IGS_CO_OU_CO_REF_ALL, status:VALID, product: IGS - Student System , description: Holds specific person references for an outgoing correspondence item , implementation_dba_data: IGS.IGS_CO_OU_CO_REF_ALL ,
-
PACKAGE BODY: APPS.IGS_CO_OU_CO_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_CO_OU_CO_PKG, status:VALID,
-
Table: IGS_CO_ITM_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_CO_ITM_ALL, object_name:IGS_CO_ITM_ALL, status:VALID, product: IGS - Student System , description: Describes correspondence items sent to students , implementation_dba_data: IGS.IGS_CO_ITM_ALL ,
-
Table: IGS_CO_S_LTR
12.2.2
product: IGS - Student System (Obsolete) , description: Describes system letter , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_CO_S_LTR
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_CO_S_LTR, object_name:IGS_CO_S_LTR, status:VALID, product: IGS - Student System , description: Describes system letter , implementation_dba_data: IGS.IGS_CO_S_LTR ,
-
APPS.IGS_CO_OU_CO_PKG dependencies on IGS_CO_VAL_OC
12.1.1
-
Table: IGS_CO_ITM_ALL
12.2.2
product: IGS - Student System (Obsolete) , description: Describes correspondence items sent to students , implementation_dba_data: Not implemented in this database ,
-
View: IGS_CO_OU_CO
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_CO_OU_CO, object_name:IGS_CO_OU_CO, status:VALID, product: IGS - Student System , description: IGS_CO_OU_CO describes the link between a person and a correspondence item. , implementation_dba_data: APPS.IGS_CO_OU_CO ,
-
Table: IGS_TR_ITEM_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_TR_ITEM_ALL, object_name:IGS_TR_ITEM_ALL, status:VALID, product: IGS - Student System , description: Describes each occurrence of a tracking process for a particular student. , implementation_dba_data: IGS.IGS_TR_ITEM_ALL ,
-
Table: IGS_TR_ITEM_ALL
12.2.2
product: IGS - Student System (Obsolete) , description: Describes each occurrence of a tracking process for a particular student. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_CO_OU_CO
12.2.2
product: IGS - Student System (Obsolete) , description: IGS_CO_OU_CO describes the link between a person and a correspondence item. , implementation_dba_data: Not implemented in this database ,
-
TABLE: IGS.IGS_CO_OU_CO_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_CO_OU_CO_ALL, object_name:IGS_CO_OU_CO_ALL, status:VALID,
-
VIEW: APPS.IGS_CO_OU_CO
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_CO_OU_CO, object_name:IGS_CO_OU_CO, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
Table: HZ_PARTIES
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_PARTIES, object_name:HZ_PARTIES, status:VALID, product: AR - Receivables , description: Information about parties such as organizations, people, and groups , implementation_dba_data: AR.HZ_PARTIES ,
-
Table: HZ_PARTIES
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_PARTIES, object_name:HZ_PARTIES, status:VALID, product: AR - Receivables , description: Information about parties such as organizations, people, and groups , implementation_dba_data: AR.HZ_PARTIES ,
-
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'. ,
-
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'. ,