ANTC_AID_SUM_VW

(SQL View)
Index Back

Anticipated Aid Summary View

The Anticipated Financial Aid table stores the amount of financial aid per award that is anticipated for a given disbursement period within a term. Once the aid has been disbursed (posted to the student account) the anticipated amount is decreased by the disbursed amount. Rows are added to the table each time activity that impacts the disbursemment amount takes place.

select a.EMPLID ,a.INSTITUTION ,a.AID_YEAR ,a.STRM ,a.ITEM_TYPE ,a.ACAD_CAREER ,a.DISBURSEMENT_PLAN ,a.DISBURSEMENT_ID ,a.AS_OF_DTTM ,a.NET_AWARD_AMT ,a.DISB_APPLY_DT ,a.DISB_EXPIRE_DT ,a.currency_cd from PS_ANTICIPATED_AID a where a.AS_OF_DTTM = ( select max(c.AS_OF_DTTM) from PS_ANTICIPATED_AID c where a.EMPLID = c.EMPLID and a.INSTITUTION = c.INSTITUTION and a.AID_YEAR = c.AID_YEAR and A.STRM = C.STRM AND a.ITEM_TYPE = c.ITEM_TYPE and a.acad_career = c.acad_career and a.disbursement_plan = c.disbursement_plan and a.disbursement_id = c.disbursement_id)

  • Parent record: STUDENT_AID
  • # 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 STRM Character(4) VARCHAR2(4) NOT NULL Term

    Prompt Table: ANT_AID_TERM_VW

    5 ITEM_TYPE Character(12) VARCHAR2(12) NOT NULL Item Type

    Prompt Table: ITEM_TYPE_FA

    6 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
    7 DISBURSEMENT_PLAN Character(2) VARCHAR2(2) NOT NULL Disbursement Plan
    8 DISBURSEMENT_ID Character(2) VARCHAR2(2) NOT NULL Disbursement ID

    Prompt Table: DISB_ID_TBL

    9 AS_OF_DTTM DateTime(26) TIMESTAMP As of Date/Time
    10 NET_AWARD_AMT Signed Number(13,2) DECIMAL(11,2) NOT NULL Net Award Amount
    11 DISB_APPLY_DT Date(10) DATE Disbursement Apply Date

    Default Value: %date

    12 DISB_EXPIRE_DT Date(10) DATE Disbursement Expire Date

    Default Value: %date

    13 CURRENCY_CD Character(3) VARCHAR2(3) NOT NULL Currency Code

    Default Value: USD

    Prompt Table: CURRENCY_CD_TBL