ACAD_PROG_PLNVW(SQL View) |
Index Back |
---|---|
Student Acad Program Plan ViewThis Student Academic Program/Plan view is used to determine if a student is active in a given Academic Plan. |
select a.emplid, a.acad_career, a.stdnt_car_nbr, a.effdt, a.effseq, b.acad_plan, a.institution, a.acad_prog, a.prog_status from ps_acad_prog a, PS_ACAD_PLAN b where a.emplid = b.emplid and a.acad_career = b.acad_career and a.stdnt_car_nbr = b.stdnt_car_nbr and a.effdt = b.effdt and a.effseq = b.effseq and a.effseq = (select max(x.effseq) from ps_acad_prog x where a.emplid = x.emplid and a.acad_career = x.acad_career and a.stdnt_car_nbr = x.stdnt_car_nbr and a.effdt = x.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 |
3 | STDNT_CAR_NBR | Number(3,0) | SMALLINT NOT NULL | Student Career Nbr |
4 | EFFDT | Date(10) | DATE NOT NULL |
Effective Date
Default Value: %date |
5 | EFFSEQ | Number(3,0) | SMALLINT NOT NULL | Effective Sequence |
6 | ACAD_PLAN | Character(10) | VARCHAR2(10) NOT NULL | Academic Plan |
7 | INSTITUTION | Character(5) | VARCHAR2(5) NOT NULL |
Academic Institution
Prompt Table: INST_CAR_SRCH |
8 | ACAD_PROG | Character(5) | VARCHAR2(5) NOT NULL |
Academic Program
Prompt Table: ACAD_PROG_SCTY |
9 | 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 |