Search Results igw_study_titles
Overview
IGW_STUDY_TITLES is a table within the Oracle E-Business Suite IGW (Grants Proposal) module, which is documented as obsolete in ETRM release 12.1.1 and 12.2.2. The table stores information on proposal titles, functioning as a descriptive repository for the titles assigned to grant proposals and related study or protocol records. Within the IGW schema, the table serves as a supporting detail structure that enriches proposal header records with human-readable title text and associated enrollment and protocol attributes.
The ETRM documentation explicitly states that IGW_STUDY_TITLES is not implemented in the reference database, which is consistent with its obsolete product classification. Consequently, the table should be treated as a historical schema artifact rather than an active transactional object in current EBS implementations. From a Data Vault modeling perspective, the heuristic classification derived from the foreign key structure is satellite-leaning. This suggests that IGW_STUDY_TITLES is best modeled as a satellite attached to the IGW_PROPOSALS_ALL hub, carrying descriptive and potentially volatile attributes such as title, enrollment status, and protocol number.
Key Information Stored
The table contains six documented columns. The surrogate primary key is STUDY_TITLE_ID, which is enforced by the IGW_STUDY_TITLES_PK constraint and is also the sole unique index candidate (IGW_STUDY_TITLES_U1). While this column uniquely identifies each title record, it is a system-generated identifier rather than a natural business key.
- STUDY_TITLE_ID — surrogate primary key uniquely identifying each study title record.
- STUDY_TITLE — the descriptive title text associated with the proposal or study.
- PROPOSAL_ID — foreign key to IGW_PROPOSALS_ALL, linking the title to its parent proposal.
- RECORD_VERSION_NUMBER — optimistic locking or versioning column used to detect concurrent updates.
- ENROLLMENT_STATUS — status indicator describing enrollment state associated with the study title.
- PROTOCOL_NUMBER — protocol identifier associated with the study or title record.
The foreign key relationship indicates that title records are subordinate to a single proposal, while IGW_SUBJECT_INFORMATION references STUDY_TITLE_ID, establishing the title as a parent for subject information rows.
Common Use Cases and Queries
Although the object is obsolete, historical reporting and data migration exercises may still require queries against IGW_STUDY_TITLES. A typical retrieval joins titles to their parent proposal:
SELECT t.STUDY_TITLE_ID, t.STUDY_TITLE, t.PROTOCOL_NUMBER, t.ENROLLMENT_STATUS
FROM IGW_STUDY_TITLES t, IGW_PROPOSALS_ALL p
WHERE t.PROPOSAL_ID = p.PROPOSAL_ID;
A second common pattern resolves the reverse relationship to subject information:
SELECT t.STUDY_TITLE, s.SUBJECT_ID
FROM IGW_STUDY_TITLES t, IGW_SUBJECT_INFORMATION s
WHERE s.STUDY_TITLE_ID = t.STUDY_TITLE_ID;
Reporting use cases include auditing proposal title inventories, reconciling enrollment status values against protocol numbers, and analyzing record version histories to detect repeated updates. Because the table is not implemented in current databases, these queries primarily support legacy data extraction, archival conversion, and upgrade impact assessments from older IGW installations.
Related Objects
The most significant related objects are those connected through the documented foreign key relationships and the IGW module's core proposal structures.
- IGW_PROPOSALS_ALL — parent table referenced by IGW_STUDY_TITLES.PROPOSAL_ID; holds proposal header information.
- IGW_SUBJECT_INFORMATION — child table referencing IGW_STUDY_TITLES.STUDY_TITLE_ID through the STUDY_TITLE_ID column.
- IGW_STUDY_TITLES_PK — the primary key constraint enforcing uniqueness of STUDY_TITLE_ID.
- IGW_STUDY_TITLES_U1 — the unique index on STUDY_TITLE_ID, serving as the business-key candidate.
- IGW_PROPOSALS_ALL primary key — the parent-side key supporting the PROPOSAL_ID join.
Together these objects define the proposal-to-title-to-subject lineage within the obsolete IGW Grants Proposal schema.
-
Table: IGW_STUDY_TITLES
12.2.2
product: IGW - Grants Proposal (Obsolete) , description: Information on proposal titles , implementation_dba_data: Not implemented in this database ,
-
Table: IGW_STUDY_TITLES
12.1.1
owner:IGW, object_type:TABLE, fnd_design_data:IGW.IGW_STUDY_TITLES, object_name:IGW_STUDY_TITLES, status:VALID, product: IGW - Grants Proposal , description: Information on proposal titles , implementation_dba_data: IGW.IGW_STUDY_TITLES ,
-
APPS.IGW_STUDY_TITLES_TBH SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGW_STUDY_TITLES_TBH
12.1.1
-
TABLE: IGW.IGW_STUDY_TITLES
12.1.1
owner:IGW, object_type:TABLE, fnd_design_data:IGW.IGW_STUDY_TITLES, object_name:IGW_STUDY_TITLES, status:VALID,
-
SYNONYM: APPS.IGW_STUDY_TITLES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGW_STUDY_TITLES, status:VALID,
-
VIEW: APPS.IGW_PRPO_SUBJECT_INFO_V
12.1.1
-
Table: IGW_SUBJECT_INFORMATION
12.2.2
product: IGW - Grants Proposal (Obsolete) , description: Information on proposal subjects , implementation_dba_data: Not implemented in this database ,
-
Table: IGW_SUBJECT_INFORMATION
12.1.1
owner:IGW, object_type:TABLE, fnd_design_data:IGW.IGW_SUBJECT_INFORMATION, object_name:IGW_SUBJECT_INFORMATION, status:VALID, product: IGW - Grants Proposal , description: Information on proposal subjects , implementation_dba_data: IGW.IGW_SUBJECT_INFORMATION ,
-
PACKAGE BODY: APPS.IGW_STUDY_TITLES_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGW_STUDY_TITLES_PVT, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
PACKAGE BODY: APPS.IGW_STUDY_TITLES_TBH
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGW_STUDY_TITLES_TBH, status:VALID,
-
Table: IGW_PROPOSALS_ALL
12.1.1
owner:IGW, object_type:TABLE, fnd_design_data:IGW.IGW_PROPOSALS_ALL, object_name:IGW_PROPOSALS_ALL, status:VALID, product: IGW - Grants Proposal , description: Core information about proposals , implementation_dba_data: IGW.IGW_PROPOSALS_ALL ,
-
Table: IGW_PROPOSALS_ALL
12.2.2
product: IGW - Grants Proposal (Obsolete) , description: Core information about proposals , implementation_dba_data: Not implemented in this database ,
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
View: IGW_PRPO_SUBJECT_INFO_V
12.2.2
product: IGW - Grants Proposal (Obsolete) , description: View displays details of human subjects involved in the proposal , implementation_dba_data: Not implemented in this database ,
-
View: IGW_PRPO_SUBJECT_INFO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGW.IGW_PRPO_SUBJECT_INFO_V, object_name:IGW_PRPO_SUBJECT_INFO_V, status:VALID, product: IGW - Grants Proposal , description: View displays details of human subjects involved in the proposal , implementation_dba_data: APPS.IGW_PRPO_SUBJECT_INFO_V ,
-
PACKAGE BODY: APPS.IGW_REPORT_PROCESSING
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGW_REPORT_PROCESSING, status:VALID,
-
VIEW: APPS.IGW_PRPO_SUBJECT_INFO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGW.IGW_PRPO_SUBJECT_INFO_V, object_name:IGW_PRPO_SUBJECT_INFO_V, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
APPS.IGW_STUDY_TITLES_PVT SQL Statements
12.1.1
-
APPS.IGW_REPORT_PROCESSING SQL Statements
12.1.1
-
APPS.IGW_STUDY_TITLES_PVT dependencies on IGW_STUDY_TITLES
12.1.1
-
APPS.IGW_REPORT_PROCESSING dependencies on IGW_STUDY_TITLES
12.1.1
-
APPS.IGW_STUDY_TITLES_TBH dependencies on IGW_STUDY_TITLES
12.1.1
-
PACKAGE BODY: APPS.IGW_STUDY_TITLES_PVT
12.1.1
-
eTRM - IGW Tables and Views
12.1.1
description: Information on proposal subjects ,
-
APPS.IGW_STUDY_TITLES_TBH dependencies on FND_API
12.1.1
-
APPS.IGW_REPORT_PROCESSING dependencies on IGW_SUBJECT_INFORMATION
12.1.1
-
PACKAGE BODY: APPS.IGW_REPORT_PROCESSING
12.1.1
-
eTRM - IGW Tables and Views
12.1.1
description: Information on proposal subjects ,
-
12.1.1 DBA Data
12.1.1