Data Source | PROD_DB |
---|---|
Job/Process Source (Refresh Interval) | Application Job, Baseline Banner Tables (Live Data) |
Functional User(s) | Elise Garcia (Director Student Success) |
Report Owner | Elise Garcia (Director Student Success) |
Contains PII | Yes |
๐ What Itโs Used For
Undocumented students often do not offer up residency information on their application because of misuse and mistreatment. To connect qualifying students to AB 540 services we first need to identify them. Student Success spends time each semester trying to identify qualifying students who have a high dollar balance on their account and providing services.
๐ Options
Options | Description |
---|---|
Term Selection | SELECT TERM AS "TERM_CODE", SEMESTER AS "DESC", TERM + ' - ' + SEMESTER AS DISPLAY FROM cos_argos_term_dw_vw Allows one term selection from a list of the last 10 years. That Term Selection is used for how far back to look at registered students. It includes the term selected. Term defined as: Error rendering macro 'excerpt-include' : No link could be created for 'DOC:Common Definitions'. |
Minimum Balance Owed | Allows for user entry where only numerical values will allow the report to work. This value is used to return only student records that have a Current Account Balance greater than or equal to that. |
๐ Results
Field Name | Data Source/Logic | Description (sample) |
---|---|---|
NAME |
| Uses Preferred First Name if it exists. If it doesnโt exist, it uses Legal First Name. Error rendering macro 'excerpt-include' : No link could be created for 'DOC:Common Definitions'. Error rendering macro 'excerpt-include' : No link could be created for 'DOC:Common Definitions'. Error rendering macro 'excerpt-include' : No link could be created for 'DOC:Common Definitions'. |
ACCOUNT BALANCE | INNER JOIN ( SELECT TBRACCD_PIDM AS ACCOUNT_PIDM, SUM ( DECODE (TBBDETC_TYPE_IND, 'C', TBRACCD_AMOUNT, TBRACCD_AMOUNT * -1)) AS ACCOUNT_BALANCE FROM TBRACCD INNER JOIN TBBDETC ON TBBDETC_DETAIL_CODE = TBRACCD_DETAIL_CODE GROUP BY TBRACCD_PIDM) ON ACCOUNT_PIDM = REGISTERED_PIDM | Grabs the studentโs current Account Balance as detailed by the Cashierโs department. Formats that numerical value as currency. |
HIGHEST REGISTERED TERM | (SELECT SGBSTDN_PIDM AS RECENT_PIDM, MAX (SGBSTDN_TERM_CODE_EFF) AS RECENT_TERM_CODE FROM SGBSTDN | Lists the furthest out term code the student was/is registered for. Can be in the future. |
RACE/ETHNICITY |
| Error rendering macro 'excerpt-include' : No link could be created for 'DOC:Common Definitions'. |
PERSONAL EMAIL |
| Error rendering macro 'excerpt-include' : No link could be created for 'DOC:Common Definitions'. |
๐บ Report Domain
Returns the most recent student information where the report options are met.
๐ Examples
Options:
Term Selection: โ202120 - Spring 2021โ
Minimum Balance Owed: โ500โ
๐จโโ๏ธ Student 1:
Last registered for classes in โ202020 - Spring 2020โ
Current Balance Owed: โ$1000โ
โ Would Not Show Up
๐ทโโ๏ธ Student 2:
Last registered for classes in โ202120 - Spring 2021โ
Current Balance Owed: โ$499โ
โ Would Not Show Up
๐ฎโโ๏ธ Student 3:
Last registered for classes in โ202220 - Spring 2022โ
Owed โ$1000โ in โ202120 - Spring 2021โ
Current Balance Owed: โ$499โ
โ Would Not Show Up
๐จโ๐ญ Student 4:
Last registered for classes in โ202120 - Spring 2021โ
Owed โ$60โ in โ202120 - Spring 2021โ
Current Balance Owed: โ$750โ
Would Show Up
๐ต๏ธโโ๏ธ Student 5:
Last registered for classes in โ202220 - Spring 2022โ
Current Balance Owed: โ$500โ
Would Show Up
Version | Date | Comment |
---|---|---|
Current Version (v. 3) | Jul 20, 2022 16:44 | Jordan Lamb |
v. 3 | Jul 20, 2022 16:44 | Jordan Lamb |
v. 2 | Jun 01, 2022 20:37 | Jordan Lamb |
v. 1 | Jun 01, 2022 20:37 | Jordan Lamb |
Add Comment