Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Repair Jira Macros

...

Develop the exclusion form of the application. This tab is only used by the CCs so it's hidden from all other campuses.

JIRAs

Jira Legacy
serverUH System JIRA
columnIdsissuekey,summary,issuetype,created,updated,duedate,assignee,reporter,priority,status,resolution
columnskey,summary,type,created,updated,due,assignee,reporter,priority,status,resolution
maximumIssues20
jqlQueryfilter = "T&P Exclusion JIRAs"
serverIdd86084f365d56b10-16da9f0c-312835b9-87cd8e03-009c94364c753356f377d63c

Requirements

#TitleUser StoryImportanceNotes

Exclusion Screen

Faculty has the right to exclude up to 10 tenured faculty members from serving
on their TPRC committee.

Must Have


Buttons

  • "Add"

Modal box

  • Enter in the faculty to exclude

Validation

  • Applicant cannot exclude more then 10 people
  • It is valid to not exclude anyone
  • Applicants can only exclude people on the FPP list
Must Have

WorkflowWhen is the deadline for this form? When is the TPRC committee formed?


FPP listing for faculty

Header row titles

  1. Name
  2. Campus
  3. Division
  4. Branch
  5. Section
  6. Job Title
  7. Grade
  8. Tenure Year
  9. Status



  • Either build a FPP database table which must be updated nightly (question) or pull the information on the fly from the HR datamart

FPP listing for Chancellors

Header row titles

  1. Name
  2. Campus
  3. Division
  4. Branch
  5. Section
  6. Job Title
  7. Grade
  8. Tenure Year
  9. Status
  10. Gender
  11. Ethnicity

  • Either build a FPP database table which must be updated nightly (question) or pull the information on the fly from the HR datamart

...

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='FTN' order by name;

...