Search Results s_adm_offer_resp_status
Overview
The IGS_AD_OFR_RESP_STAT_V view is a seeded, VALID database object owned by the APPS schema within the Oracle E-Business Suite Student System (IGS) product family. Its name decomposes into the functional domains it serves: AD (Admissions), OFR (Offer), RESP (Response), and STAT (Status). The view therefore exists to present the configurable set of admission offer response statuses — for example, values such as Accepted, Declined, Deferred, or Withdrawn — that an institution may assign to an applicant's response to an offer of admission.
Its role in EBS reporting and integration is essentially that of a decoded lookup wrapper. The underlying transactional status code is stored in the base table, but the view joins to the standard Oracle lookups repository so that reporting tools, OAF pages, and interfaces can retrieve both the coded value and its human-readable meaning in a single query. This makes the view a convenient reference source for validation, display, and cross-referencing, removing the need for consumers to hard-code lookup codes.
Underlying Base Objects
The view is defined over two sources, both resident in the APPS schema:
- IGS_AD_OFR_RESP_STAT (aliased
AORS) — the primary admissions offer response status table in the IGS Student System. It holds the status code, the descriptive text, the associated system lookup code, system default flag, closed indicator, and the standard WHO audit columns. - IGS_LOOKUPS_VIEW (aliased
LKUPV) — the standard Oracle Applications lookups view, filtered onLOOKUP_TYPE = 'ADM_OFFER_RESP_STATUS'. This supplies the looked-upMEANINGand an independentCLOSED_IND.
The two are joined on a single predicate: LKUPV.LOOKUP_CODE = AORS.S_ADM_OFFER_RESP_STATUS. The ETRM 12.2.2 metadata lists no referenced base objects separately, but the view text confirms the dependency above. Note that because the lookup view typically restricts to the current, enabled lookup values, the join can act as an implicit filter on the rows returned.
Key Columns
The view exposes thirteen columns, several of which are worth distinguishing clearly:
ROW_ID— the base table ROWID; although present, it is not a stable primary key for persisted reference.ADM_OFFER_RESP_STATUS— the primary status attribute as defined in the base table.S_ADM_OFFER_RESP_STATUS— the system-defined lookup code, used as the join key to the lookups view.DESCRIPTION— descriptive text held on the base table.MEANING— the display meaning sourced from the lookup, generally preferred for user-facing output.DSP_CLOSED_IND— the closed indicator derived from the lookup view, intended for display logic.SYSTEM_DEFAULT_IND— flags the status delivered as the system default.CLOSED_IND— the closed indicator held on the base table, distinct fromDSP_CLOSED_IND; reconciliation between the two can reveal configuration drift.CREATED_BY,CREATION_DATE,LAST_UPDATED_BY,LAST_UPDATE_DATE,LAST_UPDATE_LOGIN— the standard audit (WHO) columns.
Common Use Cases and Queries
Typical scenarios include populating a status list of values, validating an incoming status code in an interface, and reporting on admission offer responses. A basic query returning active statuses with their meanings:
SELECT adm_offer_resp_status, s_adm_offer_resp_status, meaningFROM igs_ad_ofr_resp_stat_vWHERE closed_ind = 'N'ORDER BY meaning;
To identify the default status:
SELECT adm_offer_resp_status, meaningFROM igs_ad_ofr_resp_stat_vWHERE system_default_ind = 'Y';
In reporting and integration, the view is best used as a read-only lookup source rather than a transaction target; updates must be directed to the base table or through the supported Admissions forms and APIs. Because it depends on the lookups view and the admissions table, access should be granted via the standard APPS synonym and responsibility, consistent with the ETRM metadata recorded for release 12.2.2.
-
View: IGS_AD_OFR_RESP_STAT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_OFR_RESP_STAT_V, object_name:IGS_AD_OFR_RESP_STAT_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_AD_OFR_RESP_STAT_V ,
-
VIEW: APPS.IGS_AD_OFR_RESP_STAT_V
12.1.1
-
View: IGS_AD_OFR_RESP_STAT_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGF_AP_FA_BASE_H
12.2.2
product: IGF - Financial Aid (Obsolete) , description: This view is obsolete now. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_AD_OFR_RESP_STAT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_OFR_RESP_STAT_V, object_name:IGS_AD_OFR_RESP_STAT_V, status:VALID,
-
APPS.IGS_AD_OFR_RESP_STAT_PKG SQL Statements
12.1.1
-
VIEW: APPS.IGF_AP_FA_BASE_H
12.1.1
-
View: IGF_AP_FA_BASE_H
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_FA_BASE_H, object_name:IGF_AP_FA_BASE_H, status:VALID, product: IGF - Financial Aid , description: This view is obsolete now. , implementation_dba_data: APPS.IGF_AP_FA_BASE_H ,
-
VIEW: APPS.IGF_AP_FA_BASE_H
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_FA_BASE_H, object_name:IGF_AP_FA_BASE_H, status:VALID,
-
VIEW: APPS.IGF_AP_FA_BASE_H_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_FA_BASE_H_V, object_name:IGF_AP_FA_BASE_H_V, status:VALID,
-
TABLE: IGS.IGS_AD_OFR_RESP_STAT
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_OFR_RESP_STAT, object_name:IGS_AD_OFR_RESP_STAT, status:VALID,
-
PACKAGE BODY: APPS.IGS_AD_OFR_RESP_STAT_PKG
12.1.1
-
View: IGF_AP_FA_BASE_H_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_FA_BASE_H_V, object_name:IGF_AP_FA_BASE_H_V, status:VALID, product: IGF - Financial Aid , description: This view is obsolete now. , implementation_dba_data: APPS.IGF_AP_FA_BASE_H_V ,
-
View: IGF_AP_FA_BASE_H_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: This view is obsolete now. , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_AD_GEN_008 SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_AD_VAL_AORS
12.1.1
-
View: IGS_AD_OUTCOME_LETTERS_V
12.2.2
product: IGS - Student System (Obsolete) , description: The validations for the individual letters are placed at the SQLl query level that we attach to master document , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AD_OUTCOME_LETTERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_OUTCOME_LETTERS_V, object_name:IGS_AD_OUTCOME_LETTERS_V, status:VALID, product: IGS - Student System , description: The validations for the individual letters are placed at the SQLl query level that we attach to master document , implementation_dba_data: APPS.IGS_AD_OUTCOME_LETTERS_V ,
-
TABLE: IGF.IGF_AP_FA_BASE_H_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_AP_FA_BASE_H_ALL, object_name:IGF_AP_FA_BASE_H_ALL, status:VALID,
-
APPS.IGS_EN_GEN_002 SQL Statements
12.1.1
-
PACKAGE: APPS.IGF_AP_OSS_INTR_DTLS
12.1.1
-
VIEW: APPS.IGS_AD_OUTCOME_LETTERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_OUTCOME_LETTERS_V, object_name:IGS_AD_OUTCOME_LETTERS_V, status:VALID,
-
APPS.IGS_AD_GEN_002 SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_AD_GEN_008
12.1.1
-
APPS.IGS_AD_GEN_008 dependencies on IGS_AD_OFR_RESP_STAT
12.1.1
-
APPS.IGS_AD_GEN_002 dependencies on IGS_AD_OFR_RESP_STAT
12.1.1
-
APPS.IGS_EN_GEN_002 dependencies on IGS_AD_OFR_RESP_STAT
12.1.1
-
APPS.IGS_AD_DEF_APPL_PKG SQL Statements
12.1.1
-
APPS.IGF_AP_OSS_INTR_DTLS dependencies on IGS_AD_PS_APPL_INST_ALL
12.1.1
-
APPS.IGF_AP_OSS_INTR_DTLS dependencies on IGS_AD_OFR_RESP_STAT
12.1.1
-
APPS.IGS_AD_OFR_RESP_STAT_PKG dependencies on IGS_AD_OFR_RESP_STAT
12.1.1
-
APPS.IGS_EN_GEN_002 dependencies on IGS_AD_OU_STAT
12.1.1
-
APPS.IGF_AP_OSS_INTR_DTLS dependencies on IGS_AD_PS_APPL_INST
12.1.1
-
APPS.IGS_AD_DEF_APPL_PKG dependencies on IGS_AD_OFR_RESP_STAT
12.1.1
-
APPS.IGS_EN_VAL_SCT dependencies on IGS_AD_PS_APPL_INST
12.1.1
-
APPS.IGF_AP_OSS_INTR_DTLS dependencies on IGS_AD_FEE_STAT
12.1.1
-
PACKAGE BODY: APPS.IGS_EN_GEN_002
12.1.1
-
APPS.IGF_AP_OSS_INTR_DTLS dependencies on IGS_AD_OU_STAT
12.1.1
-
PACKAGE BODY: APPS.IGS_EN_VAL_SCT
12.1.1
-
APPS.IGF_AP_OSS_INTR_DTLS dependencies on IGS_AD_APPL
12.1.1
-
APPS.IGS_AD_GEN_002 dependencies on IGS_AD_OFRDFRMT_STAT
12.1.1
-
APPS.IGF_AP_OSS_INTR_DTLS dependencies on IGS_AD_APPL_ALL
12.1.1
-
PACKAGE BODY: APPS.IGS_AD_GEN_010
12.1.1
-
APPS.IGS_EN_VAL_SCT dependencies on IGS_EN_STDNT_PS_ATT
12.1.1
-
APPS.IGS_EN_VAL_SCT dependencies on IGS_PS_STDNT_TRN
12.1.1
-
APPS.IGS_AD_OFR_RESP_STAT_PKG dependencies on IGS_GE_MSG_STACK
12.1.1
-
APPS.IGS_AD_OFR_RESP_STAT_PKG dependencies on APP_EXCEPTION
12.1.1
-
APPS.IGS_AD_OFR_RESP_STAT_PKG dependencies on FND_MESSAGE
12.1.1
-
PACKAGE BODY: APPS.IGS_AD_DEF_APPL_PKG
12.1.1
-
PACKAGE BODY: APPS.IGS_AD_GEN_002
12.1.1