Search Results igs_pe_citizen_int
Overview
IGS_PE_CITIZEN_INT is a staging interface table belonging to the IGS (Student System) product family, which is classified as obsolete in Oracle EBS 12.1.1 and 12.2.2. The table holds person citizenship records prior to their validation and migration into the Oracle Human Resources (HR) or Trading Community Architecture (TCA) person model, specifically the HZ_CITIZENSHIP table. Its purpose is to decouple inbound citizenship data — whether sourced from legacy feeds, third-party systems, batch loads, or integration programs — from the transactional citizenship table, allowing upstream matching, validation, error handling, and duplicate detection before a permanent record is created.
From a heuristic Data Vault modeling perspective, the mined FK structure classifies this object as a standalone entity. No foreign key relationships were documented, so a strict hub, link, or satellite assignment is not supported by the metadata. In a Data Vault design, the interface rows would most naturally be modeled as a staging or raw satellite structure keyed on the interface identifier, with the target HZ_CITIZENSHIP record representing the resolved hub/link relationship. Because IGS is obsolete, the object should be treated as a legacy integration artifact rather than an active business entity.
Key Information Stored
The table contains 22 documented columns. The surrogate primary key is INTERFACE_CITIZENSHIP_ID, enforced through the constraint IGS_PE_CITIZEN_INT_PK and additionally backed by the unique index IGS_PE_CITIZEN_INT_U1. This makes INTERFACE_CITIZENSHIP_ID the sole documented business-key candidate, although in practice it functions as a technical row identifier for the staging session.
- INTERFACE_ID — a batch or group identifier tying related interface rows to a single load run.
- COUNTRY_CODE — the country of citizenship to be transferred to HZ_CITIZENSHIP.
- DOCUMENT_TYPE and DOCUMENT_REFERENCE — evidence of citizenship, such as passport or naturalization documents.
- DATE_RECOGNIZED and DATE_DISOWNED — the effective recognition and disavowal dates for the citizenship claim.
- END_DATE — the termination date of the citizenship record.
- MATCH_IND — indicates whether the staged row has been successfully matched to an existing HZ_CITIZENSHIP record.
- STATUS and ERROR_CODE — the disposition of the row after interface processing and any failure reason.
- DUP_CITIZENSHIP_ID — a reference to a detected duplicate citizenship record.
- REQUEST_ID, PROGRAM_ID, PROGRAM_APPLICATION_ID, and PROGRAM_UPDATE_DATE — standard concurrent program execution context.
- INTERFACE_RUN_ID — identifies the parent import run.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, and LAST_UPDATE_LOGIN — standard WHO audit columns.
Common Use Cases and Queries
The principal use case is running the citizenship import concurrent program that reads IGS_PE_CITIZEN_INT, validates each row, and inserts corresponding records into HZ_CITIZENSHIP. Typical operational queries include reviewing pending rows before import, diagnosing failed rows after import, and reconciling counts between staging and target tables.
- Reviewing pending rows:
SELECT interface_citizenship_id, country_code, status FROM igs_pe_citizen_int WHERE status IS NULL OR status = 'PENDING'; - Diagnosing errors:
SELECT interface_citizenship_id, error_code FROM igs_pe_citizen_int WHERE error_code IS NOT NULL; - Tracking a batch:
SELECT COUNT(*) FROM igs_pe_citizen_int WHERE interface_id = :batch_id; - Auditing a concurrent run:
SELECT interface_run_id, request_id, program_id FROM igs_pe_citizen_int WHERE request_id = :req;
Reporting needs commonly include citizenship counts by country, match rates (MATCH_IND), and duplicate detection statistics computed from DUP_CITIZENSHIP_ID.
Related Objects
The most significant dependent object is HZ_CITIZENSHIP, the target table into which validated rows are loaded; the interface columns COUNTRY_CODE, DATE_RECOGNIZED, DATE_DISOWNED, and END_DATE map directly to its attributes. Related staging and processing objects include IGS_PE_PERSON_INT, which supplies person identity context; the HZ_PARTIES and HZ_PERSON_PROFILES tables that define the party for whom citizenship is recorded; the FND_CONCURRENT_REQUESTS view, joined on REQUEST_ID to trace the importing run; and the import concurrent program registered in FND_CONCURRENT_PROGRAMS, tied through PROGRAM_ID and PROGRAM_APPLICATION_ID. The HZ_CITIZENSHIP_PKG and related TCA party APIs typically govern insertion of the final citizenship rows.
-
Table: IGS_PE_CITIZEN_INT
12.2.2
product: IGS - Student System (Obsolete) , description: contains the person citizenship records to be imported to HZ_CITIZENSHIP. , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_PE_CITIZEN_INT
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PE_CITIZEN_INT, object_name:IGS_PE_CITIZEN_INT, status:VALID, product: IGS - Student System , description: contains the person citizenship records to be imported to HZ_CITIZENSHIP. , implementation_dba_data: IGS.IGS_PE_CITIZEN_INT ,
-
SYNONYM: APPS.IGS_PE_CITIZEN_INT
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_PE_CITIZEN_INT, status:VALID,
-
TABLE: IGS.IGS_PE_CITIZEN_INT
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PE_CITIZEN_INT, object_name:IGS_PE_CITIZEN_INT, status:VALID,
-
PACKAGE BODY: APPS.IGR_IMP_001
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGR_IMP_001, status:VALID,
-
PACKAGE BODY: APPS.IGS_HE_IMPORT_DATA
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_HE_IMPORT_DATA, status:VALID,
-
PACKAGE BODY: APPS.IGS_UC_EXP_APPLICANT_DTLS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_UC_EXP_APPLICANT_DTLS, status:VALID,
-
PACKAGE BODY: APPS.IGS_AD_IMP_007
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AD_IMP_007, status:VALID,
-
PACKAGE BODY: APPS.IGS_PE_PERS_IMP_001
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_PE_PERS_IMP_001, status:VALID,
-
APPS.IGR_IMP_001 SQL Statements
12.1.1
-
APPS.IGS_AD_IMP_007 SQL Statements
12.1.1
-
APPS.IGS_HE_IMPORT_DATA SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_AD_IMP_007
12.1.1
-
APPS.IGS_PE_PERS_IMP_001 SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGR_IMP_001
12.1.1
-
APPS.IGS_AD_IMP_007 dependencies on IGS_PE_CITIZEN_INT
12.1.1
-
APPS.IGS_UC_EXP_APPLICANT_DTLS dependencies on IGS_PE_CITIZEN_INT
12.1.1
-
APPS.IGS_PE_PERS_IMP_001 dependencies on IGS_PE_CITIZEN_INT
12.1.1
-
APPS.IGS_HE_IMPORT_DATA dependencies on IGS_PE_CITIZEN_INT
12.1.1
-
APPS.IGR_IMP_001 dependencies on IGS_PE_CITIZEN_INT
12.1.1
-
APPS.IGS_UC_EXP_APPLICANT_DTLS SQL Statements
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
-
PACKAGE BODY: APPS.IGS_PE_PERS_IMP_001
12.1.1
-
12.1.1 DBA Data
12.1.1
-
APPS.IGS_PE_PERS_IMP_001 dependencies on IGS_PE_FUND_SRC_INT
12.1.1
-
APPS.IGR_IMP_001 dependencies on IGS_AD_STAT_INT
12.1.1
-
APPS.IGS_AD_IMP_007 dependencies on IGS_AD_IMP_001
12.1.1
-
APPS.IGR_IMP_001 dependencies on IGS_AD_INTERFACE_ALL
12.1.1
-
APPS.IGR_IMP_001 dependencies on IGS_AD_INTERFACE_S
12.1.1
-
APPS.IGR_IMP_001 dependencies on DUAL
12.1.1
-
APPS.IGS_PE_PERS_IMP_001 dependencies on IGS_PE_PASSPORT_INT
12.1.1
-
APPS.IGR_IMP_001 dependencies on FND_FILE
12.1.1
-
APPS.IGS_AD_IMP_007 dependencies on IGS_AD_INTERFACE_ALL
12.1.1
-
PACKAGE BODY: APPS.IGS_UC_EXP_APPLICANT_DTLS
12.1.1
-
APPS.IGS_PE_PERS_IMP_001 dependencies on IGS_AD_MILITARY_INT_ALL
12.1.1
-
APPS.IGS_PE_PERS_IMP_001 dependencies on IGS_AD_EMP_INT_ALL
12.1.1
-
APPS.IGS_PE_PERS_IMP_001 dependencies on IGS_AD_HLTH_INS_INT_ALL
12.1.1
-
PACKAGE BODY: APPS.IGS_HE_IMPORT_DATA
12.1.1
-
APPS.IGS_AD_IMP_007 dependencies on IGS_AD_INTERFACE
12.1.1
-
APPS.IGS_PE_PERS_IMP_001 dependencies on IGS_PE_IMMU_DTL_INT
12.1.1
-
APPS.IGR_IMP_001 dependencies on FND_GLOBAL
12.1.1
-
APPS.IGS_PE_PERS_IMP_001 dependencies on IGS_AD_DISABLTY_INT_ALL
12.1.1
-
APPS.IGS_PE_PERS_IMP_001 dependencies on IGS_PE_VISA_INT
12.1.1
-
APPS.IGS_PE_PERS_IMP_001 dependencies on IGS_PE_EIT_INT
12.1.1
-
APPS.IGS_PE_PERS_IMP_001 dependencies on FND_STATS
12.1.1
-
APPS.IGS_AD_IMP_007 dependencies on HZ_CITIZENSHIP
12.1.1
-
APPS.IGS_AD_IMP_007 dependencies on IGS_GE_DATE
12.1.1