STDNT_CAR_S2_VW(SQL View) |
Index Back |
---|---|
Student Career Sequence ViewThis view contains what academic careers a student has been recruited in the institution and for the program statuses of Dismissed, Discontinued, Completed Program, Cancelled and Active in the Program |
select distinct a.emplid, a.acad_career, a.stdnt_car_nbr, a.institution, a.acad_prog, a.prog_status from PS_ACAD_PROG a where (a.prog_status = 'DM' or a.prog_status = 'CM' or a.prog_status = 'CN' or a.prog_status = 'DC' or a.prog_status = 'AC') and a.effdt = (select max(b.effdt) from PS_ACAD_PROG b where a.emplid = b.emplid and a.acad_career = b.acad_career and a.stdnt_car_nbr = b.stdnt_car_nbr) and a.effseq = (select max(c.effseq) from PS_ACAD_PROG c where a.emplid = c.emplid and a.acad_career = c.acad_career and a.stdnt_car_nbr = c.stdnt_car_nbr and a.effdt = c.effdt) |
# | 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 Prompt Table: STDNT_CAREER |
3 | STDNT_CAR_NBR_SR | Number(3,0) | SMALLINT NOT NULL | Student Career Number |
4 | INSTITUTION | Character(5) | VARCHAR2(5) NOT NULL |
Academic Institution
Prompt Table: INST_CAR_SRCH |
5 | ACAD_PROG | Character(5) | VARCHAR2(5) NOT NULL | Academic Program |
6 | PROG_STATUS | Character(4) | VARCHAR2(4) NOT NULL |
Academic Program Status
AC=Active in Program AD=Admitted AP=Applicant CM=Completed Program CN=Cancelled DC=Discontinued DE=Deceased DM=Dismissed LA=Leave of Absence PM=Prematriculant SP=Suspended WT=Waitlisted |