STDNT_CAREER_VW(SQL View) |
Index Back |
---|---|
Student Career viewThis view is used to search the on Programs to which a student is admitted. |
select a.emplid ,b.acad_career ,a.Stdnt_Car_Nbr ,a.institution ,a.acad_prog ,a.effdt ,a.prog_status ,d.descr from PS_ACAD_PROG a , PS_ACAD_PROG_tbl b , ps_acad_car_tbl d where b.institution = a.institution and b.acad_prog = a.acad_prog and b.acad_career = d.acad_career and b.effdt = (select max(f.effdt) from PS_ACAD_PROG_tbl f where f.institution = a.institution and f.acad_prog = a.acad_prog) and a.effdt = (select max(g.effdt) from PS_ACAD_PROG g where g.institution = a.institution and g.acad_prog = a.acad_prog and g.emplid = a.emplid) and a.effseq = (select max(j.effseq) from PS_ACAD_PROG j where j.institution = a.institution and j.acad_prog = a.acad_prog and j.emplid = a.emplid and j.effdt = a.effdt) and d.effdt = (select max(h.effdt) from ps_acad_car_tbl h where h.acad_career = b.acad_career) and (a.prog_status = 'AD' ) |
# | PeopleSoft Field Name | PeopleSoft Field Type | Database Column Type | Description |
---|---|---|---|---|
1 | EMPLID | Character(11) | VARCHAR2(11) NOT NULL | Employee ID |
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: ACAD_PROG_TBL |
3 | STDNT_CAR_NBR | Number(3,0) | SMALLINT NOT NULL | Student Career Nbr |
4 | INSTITUTION | Character(5) | VARCHAR2(5) NOT NULL |
Academic Institution
Prompt Table: INSTITUTION_TBL |
5 | ACAD_PROG | Character(5) | VARCHAR2(5) NOT NULL | Academic Program |
6 | EFFDT | Date(10) | DATE |
Effective Date
Default Value: %date |
7 | 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 |
8 | DESCR | Character(30) | VARCHAR2(30) NOT NULL | Description |