STDNT_PRCS_SRCH(SQL View) |
Index Back |
---|---|
Student Awd Process SearchStudent Award Process View - All Students whose accept amt > 0 and award status is = A(ccept), by emplid, institution, aid_year, item_type, acad_career, and term. |
SELECT DISTINCT a.emplid , a.institution , a.aid_year , a.acad_career , c.strm FROM PS_STDNT_AWARDS a , ps_stdnt_awrd_disb b , ps_disb_id_tbl c WHERE a.emplid = b.emplid AND a.institution = b.institution AND a.aid_year = b.aid_year AND a.item_type = b.item_type AND a.acad_career = b.acad_career AND b.institution = c.institution AND b.aid_year = c.aid_year AND b.acad_career = c.acad_career AND a.disbursement_plan = c.disbursement_plan AND b.disbursement_id = c.disbursement_id AND ((a.award_status = 'A' AND b.accept_balance >= 0) OR (a.award_status = 'C' AND b.authorized_balance > 0) OR (a.award_status = 'C' AND b.disbursed_balance > 0) OR (a.award_status = 'D' AND b.authorized_balance > 0) OR (a.award_status = 'D' AND b.disbursed_balance > 0)) |
# | 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 | INSTITUTION | Character(5) | VARCHAR2(5) NOT NULL |
Academic Institution
Default Value: OPR_DEF_TBL_CS.INSTITUTION Prompt Table: INSTITUTION_TBL |
3 | AID_YEAR | Character(4) | VARCHAR2(4) NOT NULL |
Aid Year
Default Value: OPR_DEF_TBL_CS.AID_YEAR Prompt Table: AID_YEAR_TBL |
4 | 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: AY_CAREER_VW |
5 | STRM | Character(4) | VARCHAR2(4) NOT NULL |
Term
Prompt Table: AY_CAR_TRM_VW |