SAA_PRG_INST_VW(SQL View) |
Index Back |
---|---|
Student InstitutionLists the distinct Institutions a student is in. |
SELECT DISTINCT a.emplid , a.institution , b.descr FROM PS_ACAD_PROG a , ps_institution_tbl b WHERE b.institution = a.institution AND b.effdt = ( SELECT MAX(b1.effdt) FROM ps_institution_tbl b1 WHERE b1.institution = b.institution AND b1.effdt <= %CurrentDateIn) AND b.eff_status = 'A' |
# | 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
Prompt Table: INSTITUTION_TBL |
3 | DESCR | Character(30) | VARCHAR2(30) NOT NULL | Description |