Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Reverted from v. 22
Jira Legacy
serverSystem JIRA
columnskey,summary,type,created,updated,due,assignee,reporter,priority,status,resolution
maximumIssues20
jqlQuerykey = AP-58
serverId8b861ae3-ff87-316b-a17e-97c61a7e2fb4

This page documents how Banner calculates Contact Hours, Total Student Contact Hours, and FTES.

...

Argos and EIS FTES reports both have incomplete logic to correctly calculate FTES for Independent Weekly and Independent Daily sections with a Lab/Activity/Other component.

Jira LegacyserverSystem JIRAserverId8b861ae3-ff87-316b-a17e-97c61a7e2fb4keyhttps://sequoias.atlassian.net/browse/AP-58

Contact Hours by Attendance Method

...

SSRMEET_HRS_DAY multiplied by SSRMEET_MEET_NO for each session and then sum each session together.

...

Independent Weekly (IW)

Condition(s)

  1. STVACCT_INDEPENDENT_IND = “Y” and STVACCT_WCH = “Y”

  2. CRN must be a credit course:IF SCBCRSE_CREDIT_STATUS_CODE IN (SELECT SVVCCST_CREDIT_STATUS FROM svvccst WHERE SVVCCST_CREDIT_COURSE = 'Y')

  3. CRN is not Inmate-only CRN. (Not currently used by COS and not programmed to handle this use case)

...

  • All sessions with a Meeting Type GTVMTYP_LAB_IND of Lab, the values of the sessions' Session Credit Hours SSRMEET_CREDIT_HR_SESS are summed, then multiplied by “3”.

Note

That “3” is hard coded in the logic.

If we schedule activity sessions, we should consider utilizing a Meeting Type with GTVMTYP_LAB_IND of Lab and put in .66 on SSRMEET_CREDIT_HR_SESS for every 1 unit of activity. That would report 1.98 contact hours for that session. Closest current fix for the hard coded “3”.

  • All sessions with a Meeting Type GTVMTYP_LAB_IND of not Lab, the values of all sessions' Session Credit Hours SSRMEET_CREDIT_HR_SESS are summed.

Then the two bullet points above are summed and then multiplied by the Independent Study Term Length Multiplier STVTERM_TERM_LEN_MULT_IS.

Independent Weekly (IW)

Condition(s)

  1. STVACCT_INDEPENDENT_IND = “Y” and STVACCT_WCH = “Y”

  2. CRN must be a credit course:IF SCBCRSE_CREDIT_STATUS_CODE IN (SELECT SVVCCST_CREDIT_STATUS FROM svvccst WHERE SVVCCST_CREDIT_COURSE = 'Y')

  3. CRN is not Inmate-only CRN. (Not currently used by COS and not programmed to handle this use case)

Calculation

  • All sessions with a Meeting Type GTVMTYP_LAB_IND of Lab, the values of the sessions' Hours Per Week SSRMEET_HRS_WEEK are summed.

  • All sessions with a Meeting Type GTVMTYP_LAB_IND of not Lab, the values of all sessions' Session Credit Hours SSRMEET_CREDIT_HR_SESS are summed.

...

Note

We aren’t setup for this. If it becomes in use by Academic Services programming augmentation will have to take place.

Condition(s)

  1. STVACCT_INDEPENDENT_IND = “Y” and STVACCT_WCH = “Y”

  2. CRN must be a non-credit course: IF SVVCCST_CREDIT_STATUS FROM svvccst WHERE SVVCCST_CREDIT_COURSE = 'N')

  3. Or CRN is Inmate-only CRN. (Not currently used by COS and not programmed to handle this use case)

Calculation

Returns this for now: "Not setup for IW Non-Credit two Census Avg."

🚧 2022 Updated Independent Daily (ID)

Condition(s)

  1. STVACCT_DCH = “Y” and STVACCT_INDEPENDENT_IND = “Y”

  2. CRN must be a credit course:IF SCBCRSE_CREDIT_STATUS_CODE IN (SELECT SVVCCST_CREDIT_STATUS FROM svvccst WHERE SVVCCST_CREDIT_COURSE = 'Y')

  3. CRN is not Inmate-only CRN. (Not currently used by COS and not programmed to handle this use case)

Calculation

  • For sessions that have a Meeting Type SSRMEET_MTYP_CODE with a GTVMTYP_LAB_IND of “N”, it will sum the Session Credit Hours SSRMEET_CREDIT_HR_SESS and multiply that by the Independent Study Term Length Multiplier STVTERM_TERM_LEN_MULT_IS.

  • ⚠ ASSUMPTION: All sessions with a Meeting Type GTVMTYP_LAB_IND of Lab, the values of the sessions' Session Credit Hours SSRMEET_CREDIT_HR_SESS are summed, then multiplied by “3”.

Then the two bullet points above are summed.

Independent Daily (ID)

Condition(s)

  1. STVACCT_DCH = “Y” and STVACCT_INDEPENDENT_IND = “Y”

  2. CRN must be a credit course:IF SCBCRSE_CREDIT_STATUS_CODE IN (SELECT SVVCCST_CREDIT_STATUS FROM svvccst WHERE SVVCCST_CREDIT_COURSE = 'Y')

  3. CRN is not Inmate-only CRN. (Not currently used by COS and not programmed to handle this use case)

Calculation

  • For sessions that have a Meeting Type SSRMEET_MTYP_CODE with a GTVMTYP_LAB_IND of “N”, it will sum the Session Credit Hours SSRMEET_CREDIT_HR_SESS and multiply that by the Independent Study Term Length Multiplier STVTERM_TERM_LEN_MULT_IS.

  • For sessions that have a Meeting Type SSRMEET_MTYP_CODE with a GTVMTYP_LAB_IND of “Y”, it will take sum the session’s Total Contact Hours SSRMEET_HRS_TOTAL.

...

Positive or Actual Attendance (P, E)

Condition(s)

  1. If SSBSECT_ACCT_CODE has a STVACCT_CODE with STVACCT_ACTUAL_IND = “Y” irrespective of STVACCT_INDEPENDENT_IND value

  2. CRN can be credit or not SCBCRSE_CREDIT_STATUS_CODE

 Calculation

Sum SFRSCTR_ATTEND_HR

Info

Unlike the rest of the Accounting Methods that are only calculating the Total Contact Hours, Positive Attendance calculates the Total Student Contact Hours (TSCH). Other Attendance Methods are calculating the Contact Hours before multiplying by enrollment data.

...