Search Results int_occurs_id
Overview
IGS.IGS_PS_PREFS_SCH_INT_ALL is an interface (staging) table in the Oracle E-Business Suite Student Systems / Institutional Grants (IGS) product family. Its display name in the ETRM repository is "Import Scheduling Reference Code". The table stores the reference code types and reference codes defined at the unit section occurrence level within the scheduling interface, and its corresponding production table is IGS_PS_USEC_OCUR_REF. In practice, records are loaded into this interface table by an inbound scheduling import process, validated, and then propagated to the production reference-code table that drives unit section occurrence scheduling in Oracle Student System.
The object is owned by the IGS schema, holds public scope, has an active lifecycle, and is stored in the APPS_TS_INTERFACE tablespace with PCT Free 10. Under the metadata's Data Vault classification heuristic, this object is satellite-leaning: it carries descriptive attribute payload (reference code, reference code type, and their descriptions) attached to parent scheduling-interface entities rather than acting primarily as a hub or a many-to-many link.
Key Information Stored
The table contains fourteen columns. The most significant are:
- INT_PREFS_ID — surrogate unique identifier for the unit section occurrence preference in the scheduling interface; enforced by unique index IGS_PS_PREFS_SCH_INT_ALL_U1.
- INT_OCCURS_ID — unique identifier for the unit section occurrence within the scheduling interface; the column the user searched for. Foreign key to IGS_PS_SCH_INT_ALL.INT_OCCURS_ID.
- REFERENCE_CD — the reference code assigned to the unit section occurrence (VARCHAR2(30)).
- REFERENCE_CD_TYPE — identifies the reference type for the unit section occurrence (VARCHAR2(10)).
- REFERENCE_CODE_DESCRIPTION — descriptive text for the reference code (VARCHAR2(60)).
- REFERENCE_TYPE_DESCRIPTION — descriptive text for the reference code type (VARCHAR2(60)).
- ORG_ID — operating unit (multi-org) identifier.
- Standard Who columns: CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN.
- Legacy/obsolete identifiers: TRANSACTION_ID and UNIT_SECTION_OCCURRENCE_ID, retained for backward compatibility.
The documented primary key IGS_PS_PREFS_SCH_INT_PK is composite (REFERENCE_CD, REFERENCE_CD_TYPE, TRANSACTION_ID, UNIT_SECTION_OCCURRENCE_ID). The viable business-key candidates are the unique indexes: IGS_PS_PREFS_SCH_INT_ALL_U1 (INT_PREFS_ID) and IGS_PS_PREFS_SCH_INT_ALL_U2 (INT_OCCURS_ID, REFERENCE_CD, REFERENCE_CD_TYPE). The latter enforces that a given reference code/type combination is unique per occurrence within the interface.
Common Use Cases and Queries
Typical uses include pre-import validation, duplicate detection, and reconciliation between the interface and production tables. A representative query retrieving all reference codes for an occurrence:
- SELECT int_occurs_id, reference_cd, reference_cd_type, reference_code_description FROM igs.igs_ps_prefs_sch_int_all WHERE int_occurs_id = :p_occurs_id;
- Join to the parent interface table to resolve occurrence context: SELECT a.int_occurs_id, a.reference_cd, b.* FROM igs.igs_ps_prefs_sch_int_all a, igs.igs_ps_sch_int_all b WHERE a.int_occurs_id = b.int_occurs_id;
- Detect duplicate business keys prior to load: SELECT int_occurs_id, reference_cd, reference_cd_type, COUNT(*) FROM igs.igs_ps_prefs_sch_int_all GROUP BY int_occurs_id, reference_cd, reference_cd_type HAVING COUNT(*) > 1;
- Compare staged rows against production: SELECT i.* FROM igs.igs_ps_prefs_sch_int_all i MINUS SELECT p.
FROM igs.igs_ps_usec_ocur_ref p; - Operational reporting filtered by operating unit: SELECT * FROM igs.igs_ps_prefs_sch_int_all WHERE org_id = :p_org_id;
The interface tablespace and PL/SQL API-driven load convention means these tables are usually populated by submission of a concurrent import program rather than direct DML; query patterns are therefore read-mostly and short-lived.
Related Objects
- IGS.IGS_PS_SCH_INT_ALL — parent scheduling interface entity; joined via INT_OCCURS_ID.
- IGS.IGS_PS_USEC_OCUR_REF — the production reference-code table that this interface feeds.
- IGS.IGS_PS_SCH_INT_ALL — occurrence-level interface header supplying INT_OCCURS_ID context.
- IGS.IGS_PS_PREFS_SCH_INT_ALL indexes — U1 and U2, enforcing surrogate and business-key uniqueness.
- Oracle Student System scheduling import concurrent programs and their PL/SQL validation APIs, which read from and purge this table after successful propagation to IGS_PS_USEC_OCUR_REF.
-
TABLE: IGS.IGS_PS_PREFS_SCH_INT_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_PREFS_SCH_INT_ALL, object_name:IGS_PS_PREFS_SCH_INT_ALL, status:VALID,
-
VIEW: APPS.IGS_PS_SCH_INSTR
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_SCH_INSTR, object_name:IGS_PS_SCH_INSTR, status:VALID,
-
VIEW: APPS.IGS_PS_SCH_MWC
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_SCH_MWC, object_name:IGS_PS_SCH_MWC, status:VALID,
-
VIEW: APPS.IGS_PS_PREFS_SCH_INT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_PREFS_SCH_INT, object_name:IGS_PS_PREFS_SCH_INT, status:VALID,
-
VIEW: APPS.IGS_PS_SCH_FACLT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_SCH_FACLT, object_name:IGS_PS_SCH_FACLT, status:VALID,
-
TABLE: IGS.IGS_PS_SCH_FACLT_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_SCH_FACLT_ALL, object_name:IGS_PS_SCH_FACLT_ALL, status:VALID,
-
Table: IGS_PS_PREFS_SCH_INT_ALL
12.2.2
product: IGS - Student System (Obsolete) , description: Describes the preferences of unit section occurrences of scheduling interface. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PS_PREFS_SCH_INT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_PREFS_SCH_INT, object_name:IGS_PS_PREFS_SCH_INT, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_PREFS_SCH_INT ,
-
TABLE: IGS.IGS_PS_SCH_INSTR_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_SCH_INSTR_ALL, object_name:IGS_PS_SCH_INSTR_ALL, status:VALID,
-
TABLE: IGS.IGS_PS_SCH_MWC_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_SCH_MWC_ALL, object_name:IGS_PS_SCH_MWC_ALL, status:VALID,
-
Table: IGS_PS_SCH_INT_ALL
12.2.2
product: IGS - Student System (Obsolete) , description: This entity holds the interface objects for scheduler. , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_PS_SCH_INT_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_SCH_INT_ALL, object_name:IGS_PS_SCH_INT_ALL, status:VALID, product: IGS - Student System , description: This entity holds the interface objects for scheduler. , implementation_dba_data: IGS.IGS_PS_SCH_INT_ALL ,
-
View: IGS_PS_SCH_FACLT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_SCH_FACLT, object_name:IGS_PS_SCH_FACLT, status:VALID, product: IGS - Student System , description: Retrofitted , implementation_dba_data: APPS.IGS_PS_SCH_FACLT ,
-
View: IGS_PS_PREFS_SCH_INT
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_PS_PREFS_SCH_INT_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_PREFS_SCH_INT_ALL, object_name:IGS_PS_PREFS_SCH_INT_ALL, status:VALID, product: IGS - Student System , description: Describes the preferences of unit section occurrences of scheduling interface. , implementation_dba_data: IGS.IGS_PS_PREFS_SCH_INT_ALL ,
-
View: IGS_PS_SCH_INSTR
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_SCH_INSTR, object_name:IGS_PS_SCH_INSTR, status:VALID, product: IGS - Student System , description: Retrofitted , implementation_dba_data: APPS.IGS_PS_SCH_INSTR ,
-
View: IGS_PS_SCH_MWC
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_SCH_MWC, object_name:IGS_PS_SCH_MWC, status:VALID, product: IGS - Student System , description: Retrofitted , implementation_dba_data: APPS.IGS_PS_SCH_MWC ,
-
View: IGS_PS_SCH_FACLT
12.2.2
product: IGS - Student System (Obsolete) , description: Retrofitted , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PS_SCH_MWC
12.2.2
product: IGS - Student System (Obsolete) , description: Retrofitted , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PS_SCH_INSTR
12.2.2
product: IGS - Student System (Obsolete) , description: Retrofitted , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_PS_SCH_INT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_SCH_INT, object_name:IGS_PS_SCH_INT, status:VALID,
-
APPS.IGS_PS_USEC_SCHEDULE SQL Statements
12.1.1
-
View: IGS_PS_SCH_INT
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
TABLE: IGS.IGS_PS_SCH_INT_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_SCH_INT_ALL, object_name:IGS_PS_SCH_INT_ALL, status:VALID,
-
View: IGS_PS_SCH_INT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_SCH_INT, object_name:IGS_PS_SCH_INT, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_SCH_INT ,
-
APPS.IGS_PS_SCH_INT_API_PUB SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_PS_SCH_INT_API_PUB
12.1.1
-
PACKAGE BODY: APPS.IGS_PS_USEC_SCHEDULE
12.1.1
-
APPS.IGS_PS_USEC_SCHEDULE dependencies on IGS_PS_SCH_FACLT_ALL
12.1.1
-
APPS.IGS_PS_USEC_SCHEDULE dependencies on IGS_PS_SCH_INSTR_ALL
12.1.1
-
APPS.IGS_PS_USEC_SCHEDULE dependencies on IGS_PS_PREFS_SCH_INT_ALL
12.1.1
-
APPS.IGS_PS_VALIDATE_LGCY_PKG dependencies on IGS_PS_SCH_INT_ALL
12.1.1
-
APPS.IGS_PS_USEC_SCHEDULE dependencies on IGS_PS_SCH_INT_ALL
12.1.1
-
APPS.IGS_PS_USEC_SCHEDULE dependencies on IGS_PS_SCH_INT
12.1.1
-
APPS.IGS_PS_VALIDATE_LGCY_PKG SQL Statements
12.1.1
-
APPS.IGS_PS_VALIDATE_LGCY_PKG dependencies on IGS_PS_SCH_PAT_INT
12.1.1
-
APPS.IGS_PS_VALIDATE_LGCY_PKG dependencies on IGS_PS_SCH_USEC_INT_ALL
12.1.1
-
APPS.IGS_PS_USEC_SCHEDULE dependencies on IGS_GE_GEN_004
12.1.1
-
APPS.IGS_PS_USEC_SCHEDULE dependencies on IGS_PS_SCH_USEC_INT_ALL
12.1.1
-
APPS.IGS_PS_USEC_SCHEDULE dependencies on FND_FILE
12.1.1
-
PACKAGE BODY: APPS.IGS_PS_VALIDATE_LGCY_PKG
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'. ,