...
# | Title | User Story | Importance | Notes |
---|---|---|---|---|
Exclusion Screen | Faculty has the right to exclude up to 10 tenured faculty members from serving | Must Have |
| |
Buttons
Modal box
Validation
| Must Have | |||
Workflow | When is the deadline for this form? When is the TPRC committee formed? | |||
Tenure codes in the HR datamart | AES ANE ANP APR APT EES EME ENS FAE FCN FEN FNR FNT FPP FPR FTA FTD FTN FTP FVF N/A | Tenured faculty for the FPP listing should only look at the bolded tenure codes on the left; they're also listed here for convenience FTN FTA | ||
FPP listing for faculty | Header row titles
|
| ||
FPP listing for Chancellors (not used in the system but exists in the database) | Header row titles
|
|
...
Code Block |
---|
select name, employee_alt_id, empl_record_no, campus_key as campus, eac_division_desc as division, eac_branch_desc as branch, eac_section_desc as section, job_title, grade, tenure_year, empl_status as status from edadba.psempl where empl_status != 'T' and employee_type_code='F' and tenure_code= in ('FTN','FTA') order by name; |
Query below pulls the FPP listing for chancellors, which is the same as above but includes the tenured faculty's gender and ethnicity (not used in the system)
...