Search Results igs_ad_recruit_pi
Overview
IGS_AD_RECRUIT_PI is a table within the IGS – Student System product family of Oracle E-Business Suite. Its documented description states that it "contains information about recruitment probability index values." In practical terms, the table stores calculated probability scores that estimate the likelihood of a prospective student (recruit) converting into an applicant or enrolled student. Each row represents a scored recruitment assessment for a specific party at a specific point in time, qualified by a probability type and source.
The ETRM metadata marks the IGS – Student System module as obsolete, and notes that the object is not implemented in this database. This is an important operational caveat: in Oracle EBS 12.1.1 and 12.2.2 environments where the obsolete IGS schema has been dropped or never deployed, the table will not exist in the data dictionary, and queries against it will fail with an ORA-00942 error.
The heuristic Data Vault classification mined from the foreign-key structure is link. As a modeling suggestion, this reflects the table's role as an associative/event structure: it joins a party (via PERSON_ID to HZ_PARTIES) to code classifications (via the two IGS_AD_CODE_CLASSES foreign keys) and carries a calculation timestamp and value — a pattern typical of a link table with attached descriptive context.
Key Information Stored
The table is documented with 11 physical columns in the 12.1.1 schema. The most significant are:
- PROBABILITY_INDEX_ID — the surrogate primary key, enforced by the
IGS_AD_RECRUIT_PI_PKunique index. It uniquely identifies each probability record. - PERSON_ID — references
HZ_PARTIES, identifying the prospective student or party being scored. - PROBABILITY_TYPE_CODE_ID — references
IGS_AD_CODE_CLASSES; classifies the kind of probability being recorded. - PROBABILITY_SOURCE_CODE_ID — also references
IGS_AD_CODE_CLASSES; identifies the origin or method that produced the score. - CALCULATION_DATE — the date on which the probability value was computed.
- PROBABILITY_VALUE — the numeric probability result itself.
- Standard EBS audit columns: CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, and LAST_UPDATE_LOGIN.
A second unique index, IGS_AD_RECRUIT_PI_U1, spans (PROBABILITY_TYPE_CODE_ID, CALCULATION_DATE, PERSON_ID), making this the documented business-key candidate and ensuring that a given person has at most one score of a given type per calculation date.
Common Use Cases and Queries
The table supports recruitment analytics and admissions funnel reporting. A typical query retrieves the latest probability per person:
SELECT p.person_id,
p.probability_type_code_id,
p.calculation_date,
p.probability_value
FROM igs_ad_recruit_pi p
WHERE p.calculation_date =
(SELECT MAX(p2.calculation_date)
FROM igs_ad_recruit_pi p2
WHERE p2.person_id = p.person_id);
Recruitment teams join to HZ_PARTIES to resolve names, and to IGS_AD_CODE_CLASSES to translate both code IDs into meaningful descriptions. Trend reporting groups by probability_type_code_id and calculation_date to observe how scores shift across a recruitment cycle.
Related Objects
- HZ_PARTIES — joined on
IGS_AD_RECRUIT_PI.PERSON_ID = HZ_PARTIES.PARTY_IDto identify the scored individual. - IGS_AD_CODE_CLASSES — referenced twice, through
PROBABILITY_TYPE_CODE_IDandPROBABILITY_SOURCE_CODE_ID, providing code lookups. - IGS_AD_RECRUIT_PI_PK / IGS_AD_RECRUIT_PI_U1 — the primary key and unique business-key indexes governing row integrity.
- Other IGS_AD admissions objects (recruit, application, and applicant tables) that share the PERSON_ID party reference for consolidated recruitment reporting.
-
Table: IGS_AD_RECRUIT_PI
12.2.2
product: IGS - Student System (Obsolete) , description: Contains information about recruitment probability index values , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_AD_RECRUIT_PI
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_RECRUIT_PI, object_name:IGS_AD_RECRUIT_PI, status:VALID, product: IGS - Student System , description: Contains information about recruitment probability index values , implementation_dba_data: IGS.IGS_AD_RECRUIT_PI ,
-
APPS.IGS_AD_RECRUIT_PI_PKG SQL Statements
12.1.1
-
VIEW: APPS.IGS_AD_RECRUIT_PI_V
12.1.1
-
TABLE: IGS.IGS_AD_RECRUIT_PI
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_RECRUIT_PI, object_name:IGS_AD_RECRUIT_PI, status:VALID,
-
VIEW: APPS.IGSBV_STDNT_RECRUITMNT_PROB
12.1.1
-
SYNONYM: APPS.IGS_AD_RECRUIT_PI
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_AD_RECRUIT_PI, status:VALID,
-
VIEW: APPS.IGSFV_STDNT_RECRUITMNT_PROB
12.1.1
-
PACKAGE BODY: APPS.IGS_AD_RECRUIT_PI_PKG
12.1.1
-
Table: IGS_AD_CODE_CLASSES
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_CODE_CLASSES, object_name:IGS_AD_CODE_CLASSES, status:VALID, product: IGS - Student System , description: Holds information about different codes, class to which code belongs, and description , implementation_dba_data: IGS.IGS_AD_CODE_CLASSES ,
-
Table: IGS_AD_CODE_CLASSES
12.2.2
product: IGS - Student System (Obsolete) , description: Holds information about different codes, class to which code belongs, and description , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_STDNT_RECRUITMNT_PROB
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_STDNT_RECRUITMNT_PROB
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_STDNT_RECRUITMNT_PROB, object_name:IGSBV_STDNT_RECRUITMNT_PROB, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGSBV_STDNT_RECRUITMNT_PROB ,
-
PACKAGE BODY: APPS.IGS_AD_IMP_PRBLTY_VAL_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AD_IMP_PRBLTY_VAL_PKG, status:VALID,
-
PACKAGE BODY: APPS.IGS_AD_RECRUIT_PI_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AD_RECRUIT_PI_PKG, status:VALID,
-
View: IGS_AD_RECRUIT_PI_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_RECRUIT_PI_V, object_name:IGS_AD_RECRUIT_PI_V, status:VALID, product: IGS - Student System , description: This view displays all records from IGS_AD_RECRUITMENT_PI table. , implementation_dba_data: APPS.IGS_AD_RECRUIT_PI_V ,
-
View: IGS_AD_RECRUIT_PI_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view displays all records from IGS_AD_RECRUITMENT_PI table. , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_STDNT_RECRUITMNT_PROB
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_STDNT_RECRUITMNT_PROB, object_name:IGSFV_STDNT_RECRUITMNT_PROB, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGSFV_STDNT_RECRUITMNT_PROB ,
-
View: IGSFV_STDNT_RECRUITMNT_PROB
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGSBV_STDNT_RECRUITMNT_PROB
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_STDNT_RECRUITMNT_PROB, object_name:IGSBV_STDNT_RECRUITMNT_PROB, status:VALID,
-
VIEW: APPS.IGS_AD_RECRUIT_PI_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_RECRUIT_PI_V, object_name:IGS_AD_RECRUIT_PI_V, status:VALID,
-
VIEW: APPS.IGSFV_STDNT_RECRUITMNT_PROB
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_STDNT_RECRUITMNT_PROB, object_name:IGSFV_STDNT_RECRUITMNT_PROB, status:VALID,
-
TABLE: IGS.IGS_AD_RECRT_PI_INT_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_RECRT_PI_INT_ALL, object_name:IGS_AD_RECRT_PI_INT_ALL, status:VALID,
-
APPS.IGS_AD_RECRUIT_PI_PKG dependencies on IGS_AD_RECRUIT_PI
12.1.1
-
APPS.IGS_AD_IMP_PRBLTY_VAL_PKG dependencies on IGS_AD_RECRUIT_PI
12.1.1
-
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
-
APPS.IGS_AD_RECRUIT_PI_PKG dependencies on IGS_AD_RECRUIT_PI_PKG
12.1.1
-
PACKAGE BODY: APPS.IGS_AD_CODE_CLASSES_PKG
12.1.1
-
APPS.IGS_AD_CODE_CLASSES_PKG dependencies on IGS_AD_APPL_PKG
12.1.1
-
APPS.IGS_AD_CODE_CLASSES_PKG dependencies on IGS_AD_RECRUIT_PI_PKG
12.1.1
-
APPS.IGS_AD_CODE_CLASSES_PKG dependencies on STANDARD
12.1.1
-
APPS.IGS_AD_CODE_CLASSES_PKG dependencies on IGS_AD_CODE_CLASSES
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'. ,