Search Results igs_pe_cred_int




Overview

IGS_PE_CRED_INT is an interface (staging) table in the Oracle E-Business Suite Student System (IGS) product module, owned by the IGS schema. As documented in ETRM for 12.1.1 and 12.2.2, its purpose is to hold credential details that must be imported for a person. In practice, external sources—admission offices, testing agencies, prior-institution feeds, or third-party credential verification services—populate this table, and concurrent programs or import routines read the rows, validate them, and move accepted records into the permanent person credential structures of the Student System. Because it is an interface table, its lifecycle is transient: rows are inserted, processed, and then either archived or purged following a successful load or a recorded error.

The ETRM heuristic Data Vault classification for this object is standalone, meaning the mined foreign key topology does not suggest a natural hub, link, or satellite grouping. Treat this as a modeling suggestion only: the table behaves architecturally like a load-staging satellite whose grain is one credential row per person, keyed by a surrogate interface identifier. It is a single-column, non-composite key structure rather than a many-to-many bridge.

Key Information Stored

The table is documented with 25 columns. The most operationally significant are:

Common Use Cases and Queries

Typical uses include pre-import validation, error triage, load reconciliation, and exception reporting. A common query retrieves unprocessed rows:

  • SELECT interface_cred_id, credential_type_id, date_received FROM igs_pe_cred_int WHERE status IS NULL OR status = 'NEW';
  • Reject analysis: SELECT error_code, error_text, COUNT(*) FROM igs_pe_cred_int GROUP BY error_code, error_text;
  • Batch monitoring: SELECT interface_run_id, status, COUNT(*) FROM igs_pe_cred_int GROUP BY interface_run_id, status;
  • Duplicate detection: SELECT interface_cred_id, dup_credential_id FROM igs_pe_cred_int WHERE match_ind = 'Y';

Reporting commonly joins to IGS_AD_CRED_TYPES to resolve credential descriptions and to the program/request columns to attribute loads to a specific concurrent run.

Related Objects

  • IGS_AD_CRED_TYPES — referenced via CREDENTIAL_TYPE_ID; supplies the credential type definition.
  • IGS_PE_CRED_INT_PK — the primary key constraint/index on INTERFACE_CRED_ID.
  • Concurrent programs in the IGS Student System — the import/validation routines that read and update STATUS, ERROR_CODE, and ERROR_TEXT.
  • Permanent person credential tables — the target structures populated after successful validation and matching.
  • Standard FND concurrent request views — joined on REQUEST_ID/PROGRAM_ID for load auditing.