Search Results igs_ad_recruit_int
Overview
The IGS_AD_RECRUIT_INT table is a Student System (IGS) interface staging table in Oracle E-Business Suite 12.1.1 and 12.2.2. It holds recruitment details to be imported for a person, functioning as the inbound landing area for prospective-student recruitment data before that data is validated and written into the operational recruitment and admissions tables. Records are keyed by INTERFACE_RECRUITMENT_ID, and each row is associated with an INTERFACE_ID and, where applicable, a REQUEST_ID and INTERFACE_RUN_ID that tie the row back to a specific concurrent program submission and interface run.
Because the table exists to receive externally sourced recruitment attributes, it is transient by nature: rows are inserted, processed, and typically purged or archived after the import completes. Status and error columns support this lifecycle. Under the heuristic Data Vault classification mined from its foreign key structure, IGS_AD_RECRUIT_INT is best modeled as a link — it carries a surrogate primary key together with multiple foreign-key references to code/lookup entities, which is characteristic of a relationship table connecting a recruitment event to a person and to the various coded attributes that describe that person's interests.
Key Information Stored
The table is documented with 40 columns in the 12.1.1 schema. The most significant are:
- INTERFACE_RECRUITMENT_ID — surrogate primary key (IGS_AD_RECRUIT_INT_PK) and the sole column in unique index IGS_AD_RECRUIT_INT_U1, making it the business-key candidate for the interface row.
- INTERFACE_ID — links the row to the parent interface header/run context.
- PERSON_ID — identifies the person (prospective student) for whom recruitment data is being imported.
- PROGRAM_ID, PROGRAM_APPLICATION_ID, PROGRAM_INTEREST_ID, PROGRAM_UPDATE_DATE — program of interest and application linkage.
- SPECIAL_INTEREST_ID, SPECIAL_SERVICES_ID, DEGREE_GOAL_ID, CERTAINTY_OF_CHOICE_ID — coded recruitment attributes describing the prospect's profile.
- INSTITUTION_LOCATION_ID, INSTITUTION_SIZE_ID, INSTITUTION_CONTROL_ID, INSTITUTION_SETTING_ID, SEC_SCHOOL_LOCATION_ID — institutional and secondary-school preference/location data.
- EMPLOYMENT_ID, HOUSING_ID, UNIT_SET_ID, RELIGION_CD — additional demographic and preference attributes.
- PRIORITY, PROBABILITY, VIP, MATCH_IND — recruitment ranking and matching indicators.
- STATUS, ERROR_CODE, ERROR_TEXT — processing outcome of the interface row.
Audit columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN) and the concurrent-program columns (REQUEST_ID, INTERFACE_RUN_ID) are consistent with standard EBS interface-table conventions.
Common Use Cases and Queries
Typical usage centers on monitoring and troubleshooting the recruitment import. A common pattern retrieves all rows for a concurrent request and their processing status:
SELECT interface_recruitment_id, person_id, program_interest_id, status, error_code, error_text FROM igs.igs_ad_recruit_int WHERE request_id = :request_id;- Identifying failed rows:
SELECT * FROM igs.igs_ad_recruit_int WHERE status = 'E' OR error_code IS NOT NULL; - Joining to
IGS_AD_CODE_CLASSESon the coded columns (for example EMPLOYMENT_ID, SPECIAL_INTEREST_ID, INSTITUTION_LOCATION_ID) to translate identifiers into descriptive values for reporting. - Counting rows per interface run to reconcile expected versus loaded prospect records.
Because these rows represent unvalidated inbound data, reports should generally be built against the post-import operational tables once processing succeeds, using this table primarily for load diagnostics and exception reporting.
Related Objects
- IGS_AD_CODE_CLASSES — referenced by five foreign keys: EMPLOYMENT_ID, INSTITUTION_LOCATION_ID, PROGRAM_INTEREST_ID, SEC_SCHOOL_LOCATION_ID, and SPECIAL_INTEREST_ID.
- IGS_AD_UNIT_SETS — referenced via UNIT_SET_ID.
- Person / interface parent objects — linked through PERSON_ID and INTERFACE_ID, connecting each staged row to the individual and the interface run.
- Recruitment operational tables — the validated target into which successfully processed rows are written after the import program completes.
Together these relationships confirm the table's role as a coded-attribute link staging area within the Student System recruitment flow.
-
Table: IGS_AD_RECRUIT_INT
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_RECRUIT_INT, object_name:IGS_AD_RECRUIT_INT, status:VALID, product: IGS - Student System , description: Holds recruitment details to be imported for a person. , implementation_dba_data: IGS.IGS_AD_RECRUIT_INT ,
-
Table: IGS_AD_RECRUIT_INT
12.2.2
product: IGS - Student System (Obsolete) , description: Holds recruitment details to be imported for a person. , implementation_dba_data: Not implemented in this database ,
-
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 ,
-
APPS.IGS_AD_IMP_014 SQL Statements
12.1.1
-
SYNONYM: APPS.IGS_AD_RECRUIT_INT
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_AD_RECRUIT_INT, status:VALID,
-
PACKAGE BODY: APPS.IGS_AD_IMP_014
12.1.1
-
PACKAGE BODY: APPS.IGS_AD_IMP_014
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AD_IMP_014, status:VALID,
-
PACKAGE BODY: APPS.IGS_AD_IMP_001
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AD_IMP_001, status:VALID,
-
PACKAGE BODY: APPS.IGS_AD_IMP_015
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AD_IMP_015, status:VALID,
-
TABLE: IGS.IGS_AD_RECRUIT_INT
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_RECRUIT_INT, object_name:IGS_AD_RECRUIT_INT, status:VALID,
-
APPS.IGS_AD_IMP_015 SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_AD_IMP_015
12.1.1
-
APPS.IGS_AD_IMP_014 dependencies on IGS_AD_RECRUIT_INT
12.1.1
-
APPS.IGS_AD_IMP_015 dependencies on IGS_AD_RECRUIT_INT
12.1.1
-
APPS.IGS_AD_IMP_001 SQL Statements
12.1.1
-
APPS.IGS_AD_IMP_001 dependencies on IGS_AD_RECRUIT_INT
12.1.1
-
12.1.1 DBA Data
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
-
APPS.IGS_AD_IMP_014 dependencies on IGS_AD_IMP_001
12.1.1
-
APPS.IGS_AD_IMP_015 dependencies on IGS_AD_IMP_014
12.1.1
-
APPS.IGS_AD_IMP_001 dependencies on IGS_PE_CRED_INT
12.1.1
-
APPS.IGS_AD_IMP_001 dependencies on IGS_UC_QUAL_INTS
12.1.1
-
APPS.IGS_AD_IMP_001 dependencies on IGS_AD_ACADHIS_INT_ALL
12.1.1
-
APPS.IGS_AD_IMP_001 dependencies on IGS_AD_TEST_INT
12.1.1
-
APPS.IGS_AD_IMP_015 dependencies on IGS_UC_QUAL_INTS
12.1.1
-
APPS.IGS_AD_IMP_014 dependencies on IGS_AD_GEN_016
12.1.1
-
PACKAGE BODY: APPS.IGS_AD_IMP_001
12.1.1
-
APPS.IGS_AD_IMP_014 dependencies on FND_LOG
12.1.1
-
APPS.IGS_AD_IMP_001 dependencies on IGS_AD_APL_INT
12.1.1
-
APPS.IGS_AD_IMP_015 dependencies on IGS_AD_INTERFACE
12.1.1
-
APPS.IGS_AD_IMP_014 dependencies on IGS_AD_RECRUITMENTS
12.1.1
-
APPS.IGS_AD_IMP_015 dependencies on FND_STATS
12.1.1
-
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'. ,
-
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'. ,