ADM_WEB_ATYP_VW(SQL View) |
Index Back |
---|---|
Admit Type View - Web ProspectThis view shows the Admit Types that are valid for a specific Institution and Career. |
SELECT DISTINCT a.institution , b.acad_career , a.admit_type , a.descr , a.descrshort FROM ps_admit_type_tbl a , PS_ACAD_CAR_TBL b WHERE a.institution = b.institution AND (a.acad_career = b.acad_career OR a.acad_career = ' ') AND a.effdt = ( SELECT MAX(c.effdt) FROM ps_admit_type_tbl c WHERE c.institution = a.institution AND c.admit_type = a.admit_type AND c.eff_status = 'A' AND c.effdt <= %CurrentDateIn) |
# | PeopleSoft Field Name | PeopleSoft Field Type | Database Column Type | Description |
---|---|---|---|---|
1 | INSTITUTION | Character(5) | VARCHAR2(5) NOT NULL |
Academic Institution
Default Value: OPR_DEF_TBL_CS.INSTITUTION |
2 | ACAD_CAREER | Character(4) | VARCHAR2(4) NOT NULL |
Academic Career
BAC=Bachelor (NLD) BBL=Vocational Coaching (NLD) BOL=Vocational Training (NLD) BUSN=Graduate Business CNED=Continuing Education CRED=Semester Credit EDU=Education (NLD) EXED=Extended Education GRAD=Graduate LAW=Law MEDS=Medical School NONA=Non Award PGRD=Postgraduate RSCH=Research TECH=Technical UENG=Undergraduate Engineering UGRD=Undergraduate VAVO=Advanced General Educ. (NLD) VETM=Veterinary Medicine |
3 | ADMIT_TYPE | Character(3) | VARCHAR2(3) NOT NULL | Admit Type |
4 | DESCR | Character(30) | VARCHAR2(30) NOT NULL | Description |
5 | DESCRSHORT | Character(10) | VARCHAR2(10) NOT NULL |
Short Description
Default Value: ADMIT_TYPE_TBL.DESCR |