Search Results igs_rc_i_lines_int
Overview
IGS_RC_I_LINES_INT is an interface staging table belonging to the Oracle E-Business Suite IGS – Student System product family. In EBS 12.1.1 and 12.2.2, this module is documented as Obsolete, meaning it is retained for backward compatibility and historical reference rather than for active functional deployment. The table stores academic interests captured through the inquiry interface — that is, the intake layer where prospective or inquiring students record their fields of academic interest before that data is validated, transformed, and loaded into the permanent Student System base tables.
The table's documented purpose is narrow and transactional: it holds inbound records awaiting processing. The ETRM metadata explicitly records the note "Not implemented in this database," indicating that in the referenced environment the object was not physically created or populated. The declared primary key, IGS_RC_I_LINES_INT_PK, is defined on a single column, INTERFACE_LINES_ID. The heuristic Data Vault classification mined from the foreign key structure is standalone, which suggests modeling this object as an independent hub rather than as a link or satellite, since no parent-child FK relationships were detected.
Key Information Stored
The documented metadata exposes a limited column set. The principal documented column is:
- INTERFACE_LINES_ID — The surrogate primary key of the staging table, enforced by the IGS_RC_I_LINES_INT_PK constraint. It uniquely identifies each interface line record and is the column referenced by external processes searching on "interface_lines_id."
In addition to the surrogate key, interface line tables of this genre typically carry business-key candidates and descriptive payload columns such as the person or inquiry identifier, the academic interest code or program reference, line sequence numbers, record status or processing flags, and creation/update audit columns. Where such columns exist, uniqueness for business purposes is normally enforced through a secondary unique index distinct from the surrogate PK; the ETRM metadata for this object, however, documents only INTERFACE_LINES_ID. Analysts should therefore treat INTERFACE_LINES_ID as the sole documented key and confirm any additional business keys directly against the physical dictionary before relying on them.
Common Use Cases and Queries
Because the object functions as an interface staging area, its principal uses revolve around data migration, batch loading, and troubleshooting intake records into the Student System. Typical scenarios include validating that inbound academic interest rows were created, checking whether a specific interface line was processed, and reconciling counts between the interface and the target base tables.
A representative lookup pattern is a direct fetch by primary key:
SELECT * FROM IGS_RC_I_LINES_INT WHERE interface_lines_id = :p_id;SELECT COUNT(*) FROM IGS_RC_I_LINES_INT;to gauge pending staging volume before a load window.- Join-based reconciliation against the corresponding base interest table to identify records that failed to transfer, filtering on the processing or status column if present.
Reporting use cases focus on interface throughput and error triage. Given the "not implemented" status recorded in this environment, queries will return no rows or raise an invalid-object error, and the correct first diagnostic step is to confirm that the table exists in the target schema before interpreting an empty result as a data condition.
Related Objects
The metadata documents no foreign key relationships, consistent with the standalone Data Vault classification. Consequently, there is no documented join-column lineage to parent or child tables. Related objects therefore fall into two functional categories rather than FK-linked groups:
- Other IGS_RC_*_INT interface tables — sibling staging objects in the same inquiry interface family, sharing the interface line identifier convention and processed by the same concurrent programs.
- IGS_RC_* base tables — the destination tables into which validated academic interest rows are ultimately loaded.
- Student System inquiry APIs and concurrent programs — the loaders and validators that read and consume IGS_RC_I_LINES_INT records.
Because no FK/PK relationship data was supplied beyond the primary key, any join columns used in practice must be verified against the physical data dictionary. Implementers should note that the documented PK relationship, IGS_RC_I_LINES_INT_PK on INTERFACE_LINES_ID, is the only authoritative key structure confirmed by the ETRM metadata for this obsolete interface object.
-
Table: IGS_RC_I_LINES_INT
12.1.1
product: IGS - Student System , description: Stores academic interests for the inquiry interface , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_RC_I_LINES_INT
12.2.2
product: IGS - Student System (Obsolete) , description: Stores academic interests for the inquiry interface , implementation_dba_data: Not implemented in this database ,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1