Search Results igs_ad_imp_stats
Overview
The IGS.IGS_AD_IMP_STATS table is a transactional statistics repository within the Oracle EBS IGS – Student System product family. As documented in the ETRM 12.1.1 physical schema, it holds statistical information about the processing that occurs during a single run of the admission import process. Rather than storing the imported admission records themselves, this table captures the counts and outcomes — totals processed, warnings raised, successes, and errors — for each logical entity handled during that run. This makes it a diagnostic and monitoring object used by administrators and technical staff to verify the health of a batch load after the fact.
From a Data Vault modeling perspective, the mined relationship data classifies this object as standalone, with a heuristic suggestion of a satellite pattern. That is, it records descriptive, run-scoped metrics keyed to a parent processing event (the interface run), rather than representing an independent hub or a linking construct between other business entities. No foreign keys are documented, reinforcing its role as an isolated statistics snapshot.
Key Information Stored
All columns reside in the IGS schema, and the documented column count is sixteen. The most significant columns are:
- INTERFACE_RUN_ID — The identifier of the admission import run. Along with ENTITY_NAME it forms the composite primary key, tying each row to a specific batch execution.
- ENTITY_NAME — The logical entity or object being processed within the run; the second component of the composite key, so statistics are segmented per entity.
- SRC_CAT_CODE — The source category code identifying the origin or classification of the imported data.
- TOTAL_REC_NUM — The total number of records considered for the entity during the run.
- TOTAL_WARN_NUM — The number of records that produced warnings.
- TOTAL_SUCCESS_NUM — The number of records successfully processed.
- TOTAL_ERROR_NUM — The number of records that failed with errors.
- CREATED_BY, CREATION_DATE — Standard audit columns recording who created the row and when.
- LAST_UPDATED_BY, LAST_UPDATE_DATE — Standard audit columns for the most recent modification.
- REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE — Concurrent program context identifying the requesting run, the application, the program, and its update timestamp.
The surrogate primary key is IGS_AD_IMP_STAT_PK, defined over the composite business-key candidate (INTERFACE_RUN_ID, ENTITY_NAME). The unique index IGS_AD_IMP_STAT_PK is the documented business-key candidate enforcing one statistics row per run-entity combination.
Common Use Cases and Queries
Typical use cases center on post-run verification, reconciliation, and reporting of admission import activity. Administrators query this table to confirm whether a load completed cleanly or to isolate entities producing errors. A representative query for a specific run is:
SELECT entity_name, src_cat_code, total_rec_num, total_success_num, total_warn_num, total_error_num FROM igs_ad_imp_stats WHERE interface_run_id = :run_id ORDER BY entity_name;
Reporting queries frequently summarize success and error ratios across recent runs, or join the run context to concurrent program logs using REQUEST_ID. Another common pattern aggregates per-entity totals to detect chronic failure points:
SELECT entity_name, SUM(total_success_num), SUM(total_error_num) FROM igs_ad_imp_stats GROUP BY entity_name;
Because audit and concurrent program columns are present, the table also supports trend analysis of import quality over time.
Related Objects
The mined relationship data classifies this table as standalone, so no foreign-key parents or children are documented. In practice, the following objects are contextually significant:
- Admission import interface tables in the IGS schema, keyed by the same interface run identifier that seeds INTERFACE_RUN_ID.
- FND_CONCURRENT_REQUESTS — joined on REQUEST_ID to correlate statistics with concurrent program runs.
- FND_CONCURRENT_PROGRAMS — referenced via PROGRAM_ID and PROGRAM_APPLICATION_ID.
- IGS_AD_IMP_STAT_PK — the primary key constraint and unique index governing row uniqueness.
- IGS admission import concurrent programs and their execution logs, which populate this table during each run.
-
Table: IGS_AD_IMP_STATS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_IMP_STATS, object_name:IGS_AD_IMP_STATS, status:VALID, product: IGS - Student System , description: This entity will hold the statistical information about the processing during a run of admisssion import process. , implementation_dba_data: IGS.IGS_AD_IMP_STATS ,
-
Table: IGS_AD_IMP_STATS
12.2.2
product: IGS - Student System (Obsolete) , description: This entity will hold the statistical information about the processing during a run of admisssion import process. , implementation_dba_data: Not implemented in this database ,
-
SYNONYM: APPS.IGS_AD_IMP_STATS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_AD_IMP_STATS, status:VALID,
-
APPS.IGS_PE_PERS_IMP_001 SQL Statements
12.1.1
-
TABLE: IGS.IGS_AD_IMP_STATS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_IMP_STATS, object_name:IGS_AD_IMP_STATS, 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_PE_PERS_IMP_001
12.1.1
-
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.IGS_AD_IMP_001 SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_AD_IMP_001
12.1.1
-
APPS.IGS_PE_PERS_IMP_001 dependencies on IGS_AD_IMP_STATS
12.1.1
-
APPS.IGS_AD_IMP_001 dependencies on IGS_AD_IMP_STATS
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
APPS.IGS_AD_IMP_001 dependencies on IGS_LOOKUP_VALUES
12.1.1
-
APPS.IGS_PE_PERS_IMP_001 dependencies on IGS_PE_SN_SRVCE_INT
12.1.1
-
APPS.IGS_PE_PERS_IMP_001 dependencies on IGS_AD_RELACAD_INT_ALL
12.1.1
-
APPS.IGS_PE_PERS_IMP_001 dependencies on IGS_AD_RELEMP_INT_ALL
12.1.1
-
APPS.IGS_PE_PERS_IMP_001 dependencies on IGS_PE_VST_HIST_INT
12.1.1
-
APPS.IGS_PE_PERS_IMP_001 dependencies on IGS_AD_HLTH_INS_INT_ALL
12.1.1
-
APPS.IGS_PE_PERS_IMP_001 dependencies on IGS_AD_REL_CON_INT_ALL
12.1.1
-
APPS.IGS_PE_PERS_IMP_001 dependencies on IGS_AD_ADDR_INT_ALL
12.1.1
-
APPS.IGS_PE_PERS_IMP_001 dependencies on IGS_AD_ALIAS_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_API_INT_ALL
12.1.1
-
APPS.IGS_PE_PERS_IMP_001 dependencies on IGS_AD_ACADHONOR_INT_ALL
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 IGS_PE_SN_CONCT_INT
12.1.1
-
APPS.IGS_AD_IMP_001 dependencies on IGS_AD_INTERFACE_ALL
12.1.1
-
APPS.IGS_PE_PERS_IMP_001 dependencies on IGS_AD_ADDRUSAGE_INT_ALL
12.1.1
-
APPS.IGS_PE_PERS_IMP_001 dependencies on IGS_AD_RELADDR_INT_ALL
12.1.1
-
APPS.IGS_PE_PERS_IMP_001 dependencies on IGS_PE_TYPE_INT
12.1.1
-
APPS.IGS_PE_PERS_IMP_001 dependencies on IGS_PE_CRED_INT
12.1.1
-
APPS.IGS_PE_PERS_IMP_001 dependencies on IGS_AD_ACADHIS_INT_ALL
12.1.1
-
APPS.IGS_PE_PERS_IMP_001 dependencies on IGS_PE_PRIVACY_INT
12.1.1
-
APPS.IGS_PE_PERS_IMP_001 dependencies on IGS_PE_RES_DTLS_INT
12.1.1
-
APPS.IGS_PE_PERS_IMP_001 dependencies on IGS_PE_CITIZEN_INT
12.1.1
-
APPS.IGS_PE_PERS_IMP_001 dependencies on IGS_AD_LANGUAGE_INT_ALL
12.1.1
-
APPS.IGS_PE_PERS_IMP_001 dependencies on IGS_AD_EXCURR_INT_ALL
12.1.1
-
APPS.IGS_PE_PERS_IMP_001 dependencies on IGS_AD_STAT_INT_ALL
12.1.1
-
APPS.IGS_PE_PERS_IMP_001 dependencies on IGS_PE_RACE_INT
12.1.1
-
APPS.IGS_PE_PERS_IMP_001 dependencies on IGS_AD_CONTACTS_INT_ALL
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_PE_FUND_SRC_INT
12.1.1
-
APPS.IGS_PE_PERS_IMP_001 dependencies on IGS_PE_PASSPORT_INT
12.1.1
-
APPS.IGS_PE_PERS_IMP_001 dependencies on IGS_PE_HOUSING_INT
12.1.1
-
APPS.IGS_PE_PERS_IMP_001 dependencies on IGS_PE_ATH_PRG_INT
12.1.1