This Table includes Institutional Student Physical Address detail
PeopleSoft Campus Solutions CSPRD and Campus Solutions Reporting CSRPT
The list of ADDRESS_TYPE is in ADDRESS_TYP_TBL - Address Type Table. The ADDRESS_TYPE='RESH' indicates residence hall address.
The following case statement can be used to create a hierarchy for reporting addresses in UM_STUD_EXTRACT :
DECODE(A.ADDRESS_TYPE, 'LOCL', 1,'RESH', 2,'HOME', 3,'BILL', 4,'MAIL', 5,'CHK', 6,'BUSN', 7,'CAMP', 8,9)
The new logic has been applied in May 2023. Please go to New address type hierarchy in UM_STUD_EXTRACT page for more information.
Here is an example public query in CSRPT so you can see how it is used: UM_OSR_CURR_STUDENTS_BY_PLAN
PeopleSoft Campus Solutions