ADM_APPL_CMP_VW(SQL View) |
Index Back |
---|---|
Adm Application Componet ViewAdmissions Application Component Table View. This view will contain the rating value for each component of a students Admission Application Evaluation. It joins fields from the Rating Component Table and is used on a panel to summarize the overall rating for a student application |
select distinct a.emplid ,a.acad_career ,a.stdnt_car_nbr ,a.adm_appl_nbr ,a.appl_prog_nbr ,a.evaluation_code ,c.effdt ,a.evaluatn_status ,a.appl_eval_nbr ,a.rating_scheme_2 as rating_scheme ,b.rating_cmp ,b.rating_cmp_value ,c.final_cmp_value ,c.determ_method from PS_ADM_APPL_EVAL a, ps_adm_appl_cmp b, ps_rating_cmp_tbl c where a.emplid = b.emplid and a.acad_career = b.acad_career and a.stdnt_car_nbr = b.stdnt_car_nbr and a.adm_appl_nbr = b.adm_appl_nbr and a.appl_prog_nbr = b.appl_prog_nbr and a.evaluation_code = b.evaluation_code and a.appl_eval_nbr = b.appl_eval_nbr and b.rating_cmp = c.rating_cmp and a.rating_scheme_2 = c.rating_scheme and c.Effdt = (Select Max(Effdt) from PS_RATING_CMP_TBL c1 where c.institution = c1.institution and c.rating_scheme = c1.rating_scheme and c.rating_cmp = c1.rating_cmp and c1.Effdt <= %CurrentDateIn) |
# | 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 | Number(3,0) | SMALLINT NOT NULL | Student Career Nbr |
4 | ADM_APPL_NBR | Character(8) | VARCHAR2(8) NOT NULL |
Application Nbr
Prompt Table: ADM_APPL_DATA |
5 | APPL_PROG_NBR | Number(3,0) | SMALLINT NOT NULL |
Application Program Nbr
Prompt Table: ADM_APP_CAR_SEQ |
6 | EVALUATION_CODE | Character(10) | VARCHAR2(10) NOT NULL |
Evaluation Code
Prompt Table: EVALUATION_TBL |
7 | EFFDT | Date(10) | DATE | Effective Date |
8 | EVALUATN_STATUS | Character(2) | VARCHAR2(2) NOT NULL |
Evaluation Status
CM=Complete IP=In Progress |
9 | APPL_EVAL_NBR | Number(3,0) | SMALLINT NOT NULL | Evaluation Nbr |
10 | RATING_SCHEME | Character(10) | VARCHAR2(10) NOT NULL | Rating Scheme |
11 | RATING_CMP | Character(5) | VARCHAR2(5) NOT NULL |
Rating Component
Prompt Table: RATING_CMP_TBL |
12 | RATING_CMP_VALUE | Number(10,4) | DECIMAL(9,4) NOT NULL | Rating Value |
13 | FINAL_CMP_VALUE | Character(1) | VARCHAR2(1) NOT NULL |
Final Value
Y/N Table Edit Default Value: N |
14 | DETERM_METHOD | Character(3) | VARCHAR2(3) NOT NULL |
Rating Determination Method
AUT=Automatically Calculated MAN=Manually Assigned |