Search Results alternate_code
Overview
The IGS_AD_PS_APL_INST_CNTX_V view is a component of the Oracle E-Business Suite (EBS) Student System product family (IGS), delivered under the APPS schema with a status of VALID in both the 12.1.1 and 12.2.2 releases. Its documented purpose is to present the application instance context for a student's admissions application. Within the IGS admissions data model, an "admission application instance" represents a specific application made by a person to a course, location, attendance mode, and academic period. This view flattens and decorates that context into a denormalized, human-readable projection, resolving foreign-key identifiers into descriptive values through correlated subqueries and code-class lookups.
This object is used heavily in reporting and integration scenarios where an external or internal consumer needs a single-row, self-describing representation of an application instance — for instance, when rendering context blocks in a self-service page, generating correspondence, or extracting application data for downstream analytics. The view does not itself store data; it is a read-only construct over the IGS admissions tables and is therefore appropriate for SELECT-only access.
Underlying Base Objects
The ETRM metadata for this view documents no referenced base objects, and the object-type metadata lists no base tables. The view text, however, clearly joins the application-instance context table (aliased AAV), the application/course-application-instance table (aliased ACAI), the party table (P, i.e., HZ_PARTIES), the calendar-instance table (CI1, CI2), the course-version table (CRV), and the lookup table (LKUP, i.e., FND_LOOKUPS). Descriptive lookups against IGS_AD_CODE_CLASSES and IGS_EN_UNIT_SET are performed through scalar subqueries rather than joins, so they do not appear as directly referenced base objects. Because the metadata is limited, practitioners should treat the view as a dependent object on the IGS admissions and party tables and validate dependencies through USER_DEPENDENCIES or the ETRM dependency report in their specific installation.
Key Columns
- ROW_ID, PERSON_ID, PERSON_NUMBER — Surrogate row identifier and the person (student/applicant) identifiers.
- DSP_CONTEXT_BLOCK_NAME — A formatted display name concatenating last name, title, and known-as/first name, suitable for context-block headings.
- ADMISSION_APPL_NUMBER, SEQUENCE_NUMBER — The application number and its sequence, identifying the specific application instance.
- NOMINATED_COURSE_CD, COURSE_CD, CGNBT_COURSE_CD — Nominated and confirmed course codes, with the course-version title.
- LOCATION_CD, ATTENDANCE_MODE, ATTENDANCE_TYPE — Delivery context attributes for the application.
- ADMISSION_CAT, S_ADMISSION_PROCESS_TYPE, ADM_PRC_TYPE_DESC — Admission category and process type with its decoded description.
- ACAD_CAL_TYPE, ACAD_CI_SEQUENCE_NUMBER, ACAD_ALTERNATE_CODE — Academic calendar instance context.
- ADM_CAL_TYPE, ADM_CI_SEQUENCE_NUMBER, ALTERNATE_CODE, COMMENCEMENT_PERIOD — Admission calendar instance and a concatenated commencement-period display string.
- UNIT_SET_CD, US_VERSION_NUMBER — Unit set context with its version.
- EDU_GOAL_PRIOR_ENROLL_ID, EDU_GOAL_PRIOR_ENROLL, EDU_GOAL_PRIOR_ENROLL_DESC — The educational goal prior to enrolment: the raw code ID, the decoded name, and the description, resolved from
IGS_AD_CODE_CLASSESwhere the class isEDU_GOALS. This is the column set most relevant to the searched term.
Common Use Cases and Queries
The view supports applicant-context reporting, admissions correspondence, and data extracts. A frequent pattern is to filter by person or application number and select the descriptive goal and course fields:
- Applicant context lookup — retrieve the display name, application number, and course for a given person.
- Educational goal analysis — group applicants by
EDU_GOAL_PRIOR_ENROLLto profile prior-education intent. - Period reporting — filter on
COMMENCEMENT_PERIODorACAD_ALTERNATE_CODEto report applications per academic period.
A representative query is:
SELECT person_number,
dsp_context_block_name,
admission_appl_number,
cgnbt_course_cd,
edu_goal_prior_enroll,
edu_goal_prior_enroll_desc,
commencement_period
FROM apps.igs_ad_ps_apl_inst_cntx_v
WHERE edu_goal_prior_enroll_id IS NOT NULL
ORDER BY person_last_name;
Because the view resolves codes through scalar subqueries and concatenations, performance for large extracts is best served by filtering on indexed identifier columns (person or application number) rather than on the decoded descriptive columns.
-
View: IGS_AD_PS_APL_INST_CNTX_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_PS_APL_INST_CNTX_V, object_name:IGS_AD_PS_APL_INST_CNTX_V, status:VALID, product: IGS - Student System , description: Application instance context view , implementation_dba_data: APPS.IGS_AD_PS_APL_INST_CNTX_V ,
-
View: IGS_CA_INST_ADM_PERD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_CA_INST_ADM_PERD_V, object_name:IGS_CA_INST_ADM_PERD_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_CA_INST_ADM_PERD_V ,
-
View: IGS_AD_PS_APPL_INST_CONTEXT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_PS_APPL_INST_CONTEXT_V, object_name:IGS_AD_PS_APPL_INST_CONTEXT_V, status:VALID, product: IGS - Student System , description: View of IGS_AD_PS_APPL_INST_APLINST_V for forms requiring this table as a context block. , implementation_dba_data: APPS.IGS_AD_PS_APPL_INST_CONTEXT_V ,
-
View: IGSFV_ACADEMIC_CATALOGS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_ACADEMIC_CATALOGS, object_name:IGSFV_ACADEMIC_CATALOGS, status:VALID, product: IGS - Student System , description: This entity contains information about the academic catalog of a person. , implementation_dba_data: APPS.IGSFV_ACADEMIC_CATALOGS ,
-
View: IGSBV_CALENDAR_PERIODS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_CALENDAR_PERIODS, object_name:IGSBV_CALENDAR_PERIODS, status:VALID, product: IGS - Student System , description: This is the base view for the entity Calendar Periods that describes an instance of a calendar type. , implementation_dba_data: APPS.IGSBV_CALENDAR_PERIODS ,
-
View: IGSFV_CALENDAR_PERIODS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_CALENDAR_PERIODS, object_name:IGSFV_CALENDAR_PERIODS, status:VALID, product: IGS - Student System , description: This is the full view for the entity Calendar Periods that describes an instance of a calendar type. , implementation_dba_data: APPS.IGSFV_CALENDAR_PERIODS ,
-
View: IGS_AD_APPL_ADMAPPL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_APPL_ADMAPPL_V, object_name:IGS_AD_APPL_ADMAPPL_V, status:VALID, product: IGS - Student System , description: View of IGS_AD_APPL_ALL table. Incorporates alternate codes and calendar instance start and end dates for both the Academic and Admission calendars. , implementation_dba_data: APPS.IGS_AD_APPL_ADMAPPL_V ,
-
View: IGS_PS_US_EM_GRP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_US_EM_GRP_V, object_name:IGS_PS_US_EM_GRP_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_US_EM_GRP_V ,
-
View: IGS_PS_UNIT_OFFER_PAT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_OFFER_PAT_V, object_name:IGS_PS_UNIT_OFFER_PAT_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_UNIT_OFFER_PAT_V ,
-
View: IGS_PS_USO_CM_GRP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_USO_CM_GRP_V, object_name:IGS_PS_USO_CM_GRP_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_USO_CM_GRP_V ,
-
View: IGS_PS_USEC_X_GRP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_USEC_X_GRP_V, object_name:IGS_PS_USEC_X_GRP_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_USEC_X_GRP_V ,
-
View: IGSFV_STUDENT_SPNSR_RELATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_STUDENT_SPNSR_RELATIONS, object_name:IGSFV_STUDENT_SPNSR_RELATIONS, status:VALID, product: IGS - Student System , description: Holds sponsor student relation details , implementation_dba_data: APPS.IGSFV_STUDENT_SPNSR_RELATIONS ,
-
View: IGS_AD_APPL_HIST_APHSTRY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_APPL_HIST_APHSTRY_V, object_name:IGS_AD_APPL_HIST_APHSTRY_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_AD_APPL_HIST_APHSTRY_V ,
-
View: IGS_CA_INST
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_CA_INST, object_name:IGS_CA_INST, status:VALID, product: IGS - Student System , description: This view is modified to capture the enrollment method type related to self service. , implementation_dba_data: APPS.IGS_CA_INST ,
-
View: IGSBV_CALENDAR_PERIOD_EVENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_CALENDAR_PERIOD_EVENTS, object_name:IGSBV_CALENDAR_PERIOD_EVENTS, status:VALID, product: IGS - Student System , description: This is the base view for the entity Calendar Period Event that describes an instance of a date alias in a calendar instance. , implementation_dba_data: APPS.IGSBV_CALENDAR_PERIOD_EVENTS ,
-
View: IGSFV_CALENDAR_PERIOD_EVENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_CALENDAR_PERIOD_EVENTS, object_name:IGSFV_CALENDAR_PERIOD_EVENTS, status:VALID, product: IGS - Student System , description: This is the full view for the entity Calendar Period Event, describes an instance of a date alias in a calendar instance. , implementation_dba_data: APPS.IGSFV_CALENDAR_PERIOD_EVENTS ,
-
View: IGSBV_STUDENT_SPNSR_RELATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_STUDENT_SPNSR_RELATIONS, object_name:IGSBV_STUDENT_SPNSR_RELATIONS, status:VALID, product: IGS - Student System , description: Holds sponsor student relation details , implementation_dba_data: APPS.IGSBV_STUDENT_SPNSR_RELATIONS ,
-
View: IGS_EN_ELGB_OVR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_ELGB_OVR_V, object_name:IGS_EN_ELGB_OVR_V, status:VALID, product: IGS - Student System , description: Describes the Enrollment Category Eligibility Validation Override step Details , implementation_dba_data: APPS.IGS_EN_ELGB_OVR_V ,
-
View: IGS_AD_DES_BATCH_DEF_DET_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_DES_BATCH_DEF_DET_V, object_name:IGS_AD_DES_BATCH_DEF_DET_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_AD_DES_BATCH_DEF_DET_V ,
-
View: IGSFV_AD_ADM_APPL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_AD_ADM_APPL, object_name:IGSFV_AD_ADM_APPL, status:VALID, product: IGS - Student System , description: Describes Admission of Application to Institution , implementation_dba_data: APPS.IGSFV_AD_ADM_APPL ,
-
View: IGS_AS_SLIST_ADI_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_SLIST_ADI_V, object_name:IGS_AS_SLIST_ADI_V, status:VALID, product: IGS - Student System , description: Assessment Student List WebADI View , implementation_dba_data: APPS.IGS_AS_SLIST_ADI_V ,
-
View: IGSFV_AD_ADM_PS_APPL_INST
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_AD_ADM_PS_APPL_INST, object_name:IGSFV_AD_ADM_PS_APPL_INST, status:VALID, product: IGS - Student System , description: Describes the request for program Entry for an Admission period , implementation_dba_data: APPS.IGSFV_AD_ADM_PS_APPL_INST ,
-
View: IGS_PS_UNIT_OFR_OPT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_OFR_OPT_V, object_name:IGS_PS_UNIT_OFR_OPT_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_UNIT_OFR_OPT_V ,
-
View: IGS_PS_USEC_OCCURS_FULL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_USEC_OCCURS_FULL_V, object_name:IGS_PS_USEC_OCCURS_FULL_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_USEC_OCCURS_FULL_V ,
-
View: IGSFV_HOUSING_STATUSES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_HOUSING_STATUSES, object_name:IGSFV_HOUSING_STATUSES, status:VALID, product: IGS - Student System , description: This entity contains information about the housing statuses of a person. , implementation_dba_data: APPS.IGSFV_HOUSING_STATUSES ,
-
View: IGSFV_PR_COHORT_INSTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_PR_COHORT_INSTS, object_name:IGSFV_PR_COHORT_INSTS, status:VALID, product: IGS - Student System , description: Stores Cohort instance details , implementation_dba_data: APPS.IGSFV_PR_COHORT_INSTS ,
-
View: IGSFV_PERSON_DEPOSITS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_PERSON_DEPOSITS, object_name:IGSFV_PERSON_DEPOSITS, status:VALID, product: IGS - Student System , description: Stores all Student Deposits in Student Finance , implementation_dba_data: APPS.IGSFV_PERSON_DEPOSITS ,
-
View: IGSFV_PARTY_CREDITS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_PARTY_CREDITS, object_name:IGSFV_PARTY_CREDITS, status:VALID, product: IGS - Student System , description: Stores all Party Credits in Student Finance , implementation_dba_data: APPS.IGSFV_PARTY_CREDITS ,
-
View: IGS_CA_INST_ALT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_CA_INST_ALT_V, object_name:IGS_CA_INST_ALT_V, status:VALID, product: IGS - Student System , description: View of cal_instance table with alternate code as the primary key. Incorporates s_cal_cat and s_cal_status. , implementation_dba_data: APPS.IGS_CA_INST_ALT_V ,
-
View: IGS_CO_INTERACTION_HISTORY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_CO_INTERACTION_HISTORY_V, object_name:IGS_CO_INTERACTION_HISTORY_V, status:VALID, product: IGS - Student System , description: Interaction History , implementation_dba_data: APPS.IGS_CO_INTERACTION_HISTORY_V ,
-
View: IGS_AS_SCAE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_SCAE_V, object_name:IGS_AS_SCAE_V, status:VALID, product: IGS - Student System , description: This view is used to combine the student course attempt enrolment details with calendar details so the records can be order by start and end date. , implementation_dba_data: APPS.IGS_AS_SCAE_V ,
-
View: IGS_CA_TERM_TEACH_ACAD_ALT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_CA_TERM_TEACH_ACAD_ALT_V, object_name:IGS_CA_TERM_TEACH_ACAD_ALT_V, status:VALID, product: IGS - Student System , description: This view contains the Term or Teaching calendar instances with corresponding academic alternate codes , implementation_dba_data: APPS.IGS_CA_TERM_TEACH_ACAD_ALT_V ,
-
View: IGS_PE_TEACH_PERIODS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_TEACH_PERIODS_V, object_name:IGS_PE_TEACH_PERIODS_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PE_TEACH_PERIODS_V ,
-
View: IGS_PS_OFR_PAT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_OFR_PAT_V, object_name:IGS_PS_OFR_PAT_V, status:VALID, product: IGS - Student System , description: View of the program offering pattern table. Required for program offering pattern LOV in ADMF1200 , implementation_dba_data: APPS.IGS_PS_OFR_PAT_V ,
-
View: IGS_AD_MKADM_DES_INT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_MKADM_DES_INT_V, object_name:IGS_AD_MKADM_DES_INT_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_AD_MKADM_DES_INT_V ,
-
View: IGS_CA_LOAD_TO_TEACH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_CA_LOAD_TO_TEACH_V, object_name:IGS_CA_LOAD_TO_TEACH_V, status:VALID, product: IGS - Student System , description: Describes the teaching calendars for the give load calendar , implementation_dba_data: APPS.IGS_CA_LOAD_TO_TEACH_V ,
-
View: IGS_PS_FAC_WL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_FAC_WL_V, object_name:IGS_PS_FAC_WL_V, status:VALID, product: IGS - Student System , description: This view stores the workload for the faculty. , implementation_dba_data: APPS.IGS_PS_FAC_WL_V ,
-
View: IGS_EN_ST_SNAPSHOT_WARNING_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_ST_SNAPSHOT_WARNING_V, object_name:IGS_EN_ST_SNAPSHOT_WARNING_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_EN_ST_SNAPSHOT_WARNING_V ,
-
View: IGS_EN_EFFECTIVE_TERMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_EFFECTIVE_TERMS_V, object_name:IGS_EN_EFFECTIVE_TERMS_V, status:VALID, product: IGS - Student System , description: View fetches the current term, one previous term and one next term for the academic calendar. , implementation_dba_data: APPS.IGS_EN_EFFECTIVE_TERMS_V ,
-
View: IGS_CA_TEACH_TO_LOAD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_CA_TEACH_TO_LOAD_V, object_name:IGS_CA_TEACH_TO_LOAD_V, status:VALID, product: IGS - Student System , description: Describes the teaching calendars for the give load calendar , implementation_dba_data: APPS.IGS_CA_TEACH_TO_LOAD_V ,
-
View: IGS_PR_SDT_PROG_PRD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PR_SDT_PROG_PRD_V, object_name:IGS_PR_SDT_PROG_PRD_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PR_SDT_PROG_PRD_V ,
-
View: IGS_AD_RESI_LETTER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_RESI_LETTER_V, object_name:IGS_AD_RESI_LETTER_V, status:VALID, product: IGS - Student System , description: It would return the Residency Details of a student , implementation_dba_data: APPS.IGS_AD_RESI_LETTER_V ,
-
View: IGS_PR_ACAD_LOAD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PR_ACAD_LOAD_V, object_name:IGS_PR_ACAD_LOAD_V, status:VALID, product: IGS - Student System , description: This view contains the details of a Student Program Attempt within a Load Calendar with cumulative and period statistics. , implementation_dba_data: APPS.IGS_PR_ACAD_LOAD_V ,
-
View: IGS_RC_I_APPL_V
12.1.1
product: IGS - Student System , description: This view will be based on OMO public view AS_SALES_LEADS_V and IGS_RC_I_APPL_ALL junction table. , implementation_dba_data: Not implemented in this database ,
-
View: IGR_I_APPL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGR_I_APPL_V, object_name:IGR_I_APPL_V, status:VALID, product: IGS - Student System , description: This view will be based on OMO public view AS_SALES_LEADS_V and IGR_I_APPL_ALL junction table. , implementation_dba_data: APPS.IGR_I_APPL_V ,
-
View: IGS_PR_STU_ACAD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PR_STU_ACAD_V, object_name:IGS_PR_STU_ACAD_V, status:VALID, product: IGS - Student System , description: Application view for academic information of a student , implementation_dba_data: APPS.IGS_PR_STU_ACAD_V ,
-
View: IGS_AD_PS_APPL_INST_APLINST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_PS_APPL_INST_APLINST_V, object_name:IGS_AD_PS_APPL_INST_APLINST_V, status:VALID, product: IGS - Student System , description: View of IGS_AD_PS_APPL_INST. Incorporates alternate codes and calendar instance start and end dates for both the Admission and Deferred Admission calendars. Also incorporates Admission Course Application details. , implementation_dba_data: APPS.IGS_AD_PS_APPL_INST_APLINST_V ,