Jira Legacy | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
|
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 Legacy
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)
STVACCT_INDEPENDENT_IND
= “Y” andSTVACCT_WCH
= “Y”CRN must be a credit course:
IF SCBCRSE_CREDIT_STATUS_CODE IN (SELECT SVVCCST_CREDIT_STATUS FROM svvccst WHERE SVVCCST_CREDIT_COURSE = 'Y')
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 HoursSSRMEET_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 HoursSSRMEET_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)
STVACCT_INDEPENDENT_IND
= “Y” andSTVACCT_WCH
= “Y”CRN must be a credit course:
IF SCBCRSE_CREDIT_STATUS_CODE IN (SELECT SVVCCST_CREDIT_STATUS FROM svvccst WHERE SVVCCST_CREDIT_COURSE = 'Y')
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 WeekSSRMEET_HRS_WEEK
are summed.All sessions with a Meeting Type
GTVMTYP_LAB_IND
of not Lab, the values of all sessions' Session Credit HoursSSRMEET_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)
STVACCT_INDEPENDENT_IND
= “Y” andSTVACCT_WCH
= “Y”CRN must be a non-credit course:
IF SVVCCST_CREDIT_STATUS FROM svvccst WHERE SVVCCST_CREDIT_COURSE = 'N')
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)
STVACCT_DCH
= “Y” andSTVACCT_INDEPENDENT_IND
= “Y”CRN must be a credit course:
IF SCBCRSE_CREDIT_STATUS_CODE IN (SELECT SVVCCST_CREDIT_STATUS FROM svvccst WHERE SVVCCST_CREDIT_COURSE = 'Y')
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 aGTVMTYP_LAB_IND
of “N”, it will sum the Session Credit HoursSSRMEET_CREDIT_HR_SESS
and multiply that by the Independent Study Term Length MultiplierSTVTERM_TERM_LEN_MULT_IS
.⚠ ASSUMPTION: All sessions with a Meeting Type
GTVMTYP_LAB_IND
of Lab, the values of the sessions' Session Credit HoursSSRMEET_CREDIT_HR_SESS
are summed, then multiplied by “3”.
Then the two bullet points above are summed.
Independent Daily (ID)
Condition(s)
STVACCT_DCH
= “Y” andSTVACCT_INDEPENDENT_IND
= “Y”CRN must be a credit course:
IF SCBCRSE_CREDIT_STATUS_CODE IN (SELECT SVVCCST_CREDIT_STATUS FROM svvccst WHERE SVVCCST_CREDIT_COURSE = 'Y')
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 aGTVMTYP_LAB_IND
of “N”, it will sum the Session Credit HoursSSRMEET_CREDIT_HR_SESS
and multiply that by the Independent Study Term Length MultiplierSTVTERM_TERM_LEN_MULT_IS
.For sessions that have a Meeting Type
SSRMEET_MTYP_CODE
with aGTVMTYP_LAB_IND
of “Y”, it will take sum the session’s Total Contact HoursSSRMEET_HRS_TOTAL
.
...
Positive or Actual Attendance (P, E)
Condition(s)
If
SSBSECT_ACCT_CODE
has aSTVACCT_CODE
withSTVACCT_ACTUAL_IND
= “Y” irrespective ofSTVACCT_INDEPENDENT_IND
valueCRN 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. |
...