ACAD_PROG_R_VW(SQL View) |
Index Back |
---|---|
Student Acad Prog R Prompt VwThis view is an F4 prompt view which selects academic programs from the Academic Program table. |
SELECT DISTINCT a.Emplid , a.Acad_Career , b.Institution , a.Acad_Prog , a.Effdt , a.Effseq , b.Descrshort , a.Stdnt_Car_Nbr FROM PS_ACAD_PROG a , PS_ACAD_PROG_TBL b WHERE a.Institution = b.Institution AND a.Acad_Prog = b.Acad_Prog AND b.Effdt = ( SELECT MAX(b1.Effdt) FROM PS_ACAD_PROG_TBL b1 WHERE b1.Institution = b.Institution AND b1.Acad_Prog = b.Acad_Prog AND b1.Effdt <= a.Effdt) AND b.Eff_Status = 'A' |
# | PeopleSoft Field Name | PeopleSoft Field Type | Database Column Type | Description |
---|---|---|---|---|
1 | EMPLID | Character(11) | VARCHAR2(11) NOT NULL |
Employee ID
Prompt Table: PEOPLE_SRCH |
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 | INSTITUTION | Character(5) | VARCHAR2(5) NOT NULL |
Academic Institution
Prompt Table: INSTITUTION_TBL |
4 | ACAD_PROG | Character(5) | VARCHAR2(5) NOT NULL | Academic Program |
5 | EFFDT | Date(10) | DATE |
Effective Date
Default Value: %date |
6 | EFFSEQ | Number(3,0) | SMALLINT NOT NULL | Effective Sequence |
7 | PROG_DESC | Character(12) | VARCHAR2(12) NOT NULL | Program Description |
8 | STDNT_CAR_NBR | Number(3,0) | SMALLINT NOT NULL | Student Career Nbr |