RD_ACAD_ATY_VW(SQL View) |
Index Back |
---|---|
Admit Type ViewThis view shows the Admit Types that are valid for the specific Career being processed and that are shared across Careers. |
SELECT DISTINCT T.INSTITUTION , C.ACAD_CAREER , T.ADMIT_TYPE , T.DESCR , T.DESCRSHORT FROM PS_ACAD_CAR_TBL C , PS_ADMIT_TYPE_TBL T WHERE C.INSTITUTION = T.INSTITUTION AND (C.ACAD_CAREER = T.ACAD_CAREER OR T.ACAD_CAREER = ' ') AND %EffdtCheck(ADMIT_TYPE_TBL, T, %CurrentDateIn) AND T.EFF_STATUS = 'A' |
# | PeopleSoft Field Name | PeopleSoft Field Type | Database Column Type | Description |
---|---|---|---|---|
1 | INSTITUTION | Character(5) | VARCHAR2(5) NOT NULL |
Institution field to store institution information in campus solution system.
Prompt Table: INSTITUTION_TBL |
2 | ACAD_CAREER | Character(4) | VARCHAR2(4) NOT NULL |
Academic career field coming from campus solution system.
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 Prompt Table: ACAD_CAR_TBL |
3 | ADMIT_TYPE | Character(3) | VARCHAR2(3) NOT NULL |
Admit type stores information about the type of admission.
Prompt Table: ADMIT_TYPE_TBL |
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 |