Search Results def_adm_cal_type




Overview

IGS.IGS_AD_OFFRESP_INT is the Offer Response Import interface table in the Oracle E-Business Suite Student System (Product: IGS, "Import Offer Response"). It is a public, active business entity table classified under the category IGS_ADM_APPLICATION. Its purpose is to hold offer response details for each person prior to import into the IGS_AD_PS_APPL_INST table by the Offer Response Import concurrent process. Rows are staged in the APPS_TS_INTERFACE tablespace, populated either manually or by external feeds, and then processed in batch.

From a data-modeling perspective, the ETRM relationship metadata classifies this table as satellite-leaning. This is consistent with its structure: it is a transactional staging record keyed by a surrogate identifier, holding descriptive attributes about an applicant's response to an admission offer, and pointing back to a batch header (IGS_AD_OFFRESP_BATCH) via BATCH_ID.

Key Information Stored

Note that the def_adm_cal_type sought by the user is a defined column (DEF_ADM_CAL_TYPE) and its companion DEF_ADM_CI_SEQUENCE_NUMBER; these hold the deferred admission calendar type and instance, distinct from the deferred academic calendar type held in DEF_ACAD_CAL_TYPE.

Common Use Cases and Queries

Typical scenarios include monitoring pending interface rows, validating offer responses before import, and reconciling errored records. Sample patterns:

  • Find pending rows awaiting processing: SELECT * FROM igs.igs_ad_offresp_int WHERE status = '2';
  • Retrieve all rows in a batch: SELECT * FROM igs.igs_ad_offresp_int WHERE batch_id = :batch_id;
  • Locate errored or deferred responses: SELECT ofrresp_int_id, person_id, def_adm_cal_type FROM igs.igs_ad_offresp_int WHERE status = '3';
  • Report applicant responses by date: filter on ACTUAL_OFFER_RESPONSE_DT for reporting.

Related Objects

  • IGS.IGS_AD_OFFRESP_BATCH — parent batch header; joined on BATCH_ID (FK from this table).
  • IGS.IGS_AD_OFFRESP_ERR — error log referencing OFFRESP_INT_ID for the affected interface row.
  • IGS.IGS_AD_PS_APPL_INST — target table populated by the Offer Response Import process after interface validation.
  • The Offer Response Import concurrent program — the batch process that reads rows where STATUS = '2' and applies the offer response.