Search Results enquiry_characteristic_type
Overview
The IGS_IN_APPL_CHAR_TYP table is a data storage object within the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2, residing under the IGS (iGrants) schema. Its core function is to record the association between a person's enquiry and specific, user-defined characteristic types that classify that enquiry. These characteristics, such as 'school leaver', 'TAFE graduate', 'domestic', or 'international', provide categorical context to the enquiry process. It is critical to note that the provided ETRM documentation explicitly marks this table as "Obsolete." This designation indicates the table is part of a legacy data model that may be deprecated, and its use in new developments or integrations is strongly discouraged. The table is stored in the APPS_TS_TX_DATA tablespace.
Key Information Stored
The table's structure is centered on linking a person, their specific enquiry, and a characteristic type. The primary key is a composite of three columns, ensuring a unique combination for each record. Key columns include:
- PERSON_ID (NUMBER): A mandatory foreign key that stores the unique identifier for a person, referencing the HZ_PARTIES table in the Trading Community Architecture (TCA) model.
- ENQUIRY_APPL_NUMBER (NUMBER): A mandatory number that uniquely identifies a specific enquiry made by the person referenced in PERSON_ID.
- ENQUIRY_CHARACTERISTIC_TYPE (VARCHAR2(10)): A mandatory code that describes the user-defined type of characteristic applied to the enquiry. This column is also a foreign key, likely referencing a lookup or code table for validation (e.g., IGS_IN_ENQ_CHAR_TYPE).
- Standard WHO Columns: CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, and LAST_UPDATE_LOGIN for audit trail purposes.
Common Use Cases and Queries
Given its obsolete status, primary use cases involve historical data analysis, legacy report maintenance, or data migration projects. A typical query would retrieve all characteristic types associated with a specific person's enquiry for auditing or reporting on historical applicant profiles. The fundamental SQL pattern involves joining with the person (HZ_PARTIES) and characteristic type lookup tables.
Sample Query: Retrieving all enquiry characteristics for a specific person identifier.
SELECT eact.ENQUIRY_CHARACTERISTIC_TYPE, eact.ENQUIRY_APPL_NUMBER, hp.party_name
FROM IGS.IGS_IN_APPL_CHAR_TYP eact
JOIN HZ_PARTIES hp ON hp.party_id = eact.PERSON_ID
WHERE eact.PERSON_ID = :person_id
ORDER BY eact.ENQUIRY_APPL_NUMBER;
Reporting use cases would focus on generating counts or lists of enquiries segmented by these characteristic types, such as the number of domestic versus international enquiries received within a date range, filtered by the CREATION_DATE.
Related Objects
The table's relationships are defined through its primary and foreign keys. The documented relationships are:
- Primary Key Constraint (IGS_IN_APPL_CHAR_TYP_PK): Enforces uniqueness on the combination of PERSON_ID, ENQUIRY_APPL_NUMBER, and ENQUIRY_CHARACTERISTIC_TYPE.
- Foreign Key Reference (Outbound): The ENQUIRY_CHARACTERISTIC_TYPE column references a lookup table, documented as IGS_IN_ENQ_CHAR_TYPE, to validate the characteristic code.
- Foreign Key Reference (Outbound): The PERSON_ID column is a foreign key to HZ_PARTIES.PARTY_ID, linking the enquiry characteristic to a person/party in the TCA registry.
- Dependency: The table is referenced by a synonym (IGS_IN_APPL_CHAR_TYP) under the APPS schema, which is the standard access point for EBS application code.
-
TABLE: IGS.IGS_IN_APPL_CHAR_TYP
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_IN_APPL_CHAR_TYP, object_name:IGS_IN_APPL_CHAR_TYP, status:VALID,
-
TABLE: IGS.IGR_I_A_CHARTYP
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGR_I_A_CHARTYP, object_name:IGR_I_A_CHARTYP, status:VALID,
-
TABLE: IGS.IGS_IN_ENQ_CHAR_TYPE
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_IN_ENQ_CHAR_TYPE, object_name:IGS_IN_ENQ_CHAR_TYPE, status:VALID,
-
APPS.IGR_I_A_CHARTYP_PKG dependencies on IGR_I_A_CHARTYP
12.1.1
-
APPS.IGR_I_E_CHARTYP_PKG dependencies on IGR_I_E_CHARTYP
12.1.1
-
TABLE: IGS.IGR_I_E_CHARTYP
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGR_I_E_CHARTYP, object_name:IGR_I_E_CHARTYP, status:VALID,
-
APPS.IGR_I_A_CHARTYP_PKG SQL Statements
12.1.1
-
APPS.IGR_I_E_CHARTYP_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGR_VAL_ECT
12.1.1
-
VIEW: APPS.IGS_IN_APPL_CHAR_TYP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_IN_APPL_CHAR_TYP_V, object_name:IGS_IN_APPL_CHAR_TYP_V, status:VALID,
-
APPS.IGR_VAL_ECT SQL Statements
12.1.1
-
Table: IGR_I_E_CHARTYP
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGR_I_E_CHARTYP, object_name:IGR_I_E_CHARTYP, status:VALID, product: IGS - Student System , description: Describes the characteristics of an enquirer to the institution. , implementation_dba_data: IGS.IGR_I_E_CHARTYP ,
-
Table: IGR_I_A_CHARTYP
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGR_I_A_CHARTYP, object_name:IGR_I_A_CHARTYP, status:VALID, product: IGS - Student System , description: Stores the type of enquiry made by a person. , implementation_dba_data: IGS.IGR_I_A_CHARTYP ,
-
VIEW: APPS.IGR_I_A_CHAR_TYP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGR_I_A_CHAR_TYP_V, object_name:IGR_I_A_CHAR_TYP_V, status:VALID,
-
Table: IGS_RC_I_E_CHARTYP
12.2.2
product: IGS - Student System (Obsolete) , description: Describes the characteristics of an enquirer to the institution. , implementation_dba_data: Not implemented in this database ,
-
APPS.IGR_IMP_004 dependencies on IGR_I_E_CHARTYP
12.1.1
-
Table: IGS_IN_APPL_CHAR_TYP
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_IN_APPL_CHAR_TYP, object_name:IGS_IN_APPL_CHAR_TYP, status:VALID, product: IGS - Student System , description: This table stores the type of enquiry made by a person - Obsolete , implementation_dba_data: IGS.IGS_IN_APPL_CHAR_TYP ,
-
Table: IGR_I_A_CHARTYP
12.2.2
product: IGS - Student System (Obsolete) , description: Stores the type of enquiry made by a person. , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_RC_I_E_CHARTYP
12.1.1
product: IGS - Student System , description: Describes the characteristics of an enquirer to the institution. , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_RC_I_A_CHARTYP
12.2.2
product: IGS - Student System (Obsolete) , description: Stores the type of enquiry made by a person. , implementation_dba_data: Not implemented in this database ,
-
Table: IGR_I_E_CHARTYP
12.2.2
product: IGS - Student System (Obsolete) , description: Describes the characteristics of an enquirer to the institution. , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_IN_ENQ_CHAR_TYPE
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_IN_ENQ_CHAR_TYPE, object_name:IGS_IN_ENQ_CHAR_TYPE, status:VALID, product: IGS - Student System , description: This entity describes the characteristics of an enquirer to the institution. Examples School leaver, Graduate, Domestic or International. Used for statistical purposes and to allow for tailoring of packages - Obsolete , implementation_dba_data: IGS.IGS_IN_ENQ_CHAR_TYPE ,
-
View: IGS_IN_APPL_CHAR_TYP_V
12.2.2
product: IGS - Student System (Obsolete) , description: Inquiries application characteristics type - Obsolete , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_IN_ENQ_CHAR_TYPE
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes the characteristics of an enquirer to the institution. Examples School leaver, Graduate, Domestic or International. Used for statistical purposes and to allow for tailoring of packages - Obsolete , implementation_dba_data: Not implemented in this database ,
-
View: IGR_I_A_CHAR_TYP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGR_I_A_CHAR_TYP_V, object_name:IGR_I_A_CHAR_TYP_V, status:VALID, product: IGS - Student System , description: Inquiry characteristic type view , implementation_dba_data: APPS.IGR_I_A_CHAR_TYP_V ,
-
View: IGS_IN_APPL_CHAR_TYP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_IN_APPL_CHAR_TYP_V, object_name:IGS_IN_APPL_CHAR_TYP_V, status:VALID, product: IGS - Student System , description: Inquiries application characteristics type - Obsolete , implementation_dba_data: APPS.IGS_IN_APPL_CHAR_TYP_V ,
-
PACKAGE BODY: APPS.IGR_I_E_CHARTYP_PKG
12.1.1
-
View: IGS_RC_I_A_CHAR_TYP_V
12.1.1
product: IGS - Student System , description: Inquiry characteristic type view , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_RC_I_A_CHARTYP
12.1.1
product: IGS - Student System , description: Stores the type of enquiry made by a person. , implementation_dba_data: Not implemented in this database ,
-
APPS.IGR_VAL_ECT dependencies on IGR_I_E_CHARTYP
12.1.1
-
View: IGR_I_A_CHAR_TYP_V
12.2.2
product: IGS - Student System (Obsolete) , description: Inquiry characteristic type view , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_IN_APPL_CHAR_TYP
12.2.2
product: IGS - Student System (Obsolete) , description: This table stores the type of enquiry made by a person - Obsolete , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGR_I_A_CHARTYP_PKG
12.1.1
-
View: IGS_RC_I_A_CHAR_TYP_V
12.2.2
product: IGS - Student System (Obsolete) , description: Inquiry characteristic type view , implementation_dba_data: Not implemented in this database ,
-
APPS.IGR_I_A_CHARTYP_PKG dependencies on FND_MESSAGE
12.1.1
-
APPS.IGR_I_E_CHARTYP_PKG dependencies on APP_EXCEPTION
12.1.1
-
APPS.IGR_I_E_CHARTYP_PKG dependencies on IGS_GE_MSG_STACK
12.1.1
-
APPS.IGR_I_E_CHARTYP_PKG dependencies on FND_MESSAGE
12.1.1
-
APPS.IGR_IMP_004 SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGR_IMP_004
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'. ,