Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Expand
titleℹ️ How To

Populate Academic Year

District: Do it for 561

Reporting Period:

P1 - 2

P2 - 1

  •  SVRCALX
Panel
panelIconId23f3
panelIcon:hourglass_flowing_sand:
panelIconText
bgColor#F4F5F7

Runtime ~5 minutes

...

Expand
titleException students not reported: Students in Positive Attendance CRNs with zero reportable hours.
Info

SFAALST is a helpful screen.

https://sequoias.atlassian.net/browse/AP-514
  •  SVRCALD (Student Details and Non)
Expand
titleℹ️ How To

04 (Include Student Details) - Y

Panel
panelIconId23f3
panelIcon:hourglass_flowing_sand:
panelIconText
bgColor#F4F5F7

Runtime ~1 minutes

04 (Include Student Details) - N

Panel
panelIconId23f3
panelIcon:hourglass_flowing_sand:
panelIconText
bgColor#F4F5F7

Runtime ~6 minutes

I wonder why no Student Details takes longer? (blue star)

Info

Good to have for backup. Not necessary for subsequent Banner reports/extracts.

05 (Standard or Apprenticeship Rpt) - S

Info

As of at least we do not have Apprenticeship courses.

  •  SEND "*WARNING* Total CH is not equal to (Length Mult * Std CH)" to Vanessa Escobar/Jenae Prator it's about Attendance Method
    •  Jenae assessed:
    •  Vanessa assessed:
  •  SVRCALP
Panel
panelIconId23f3
panelIcon:hourglass_flowing_sand:
panelIconText
bgColor#F4F5F7

Runtime <1 minutes

  •  SEND TO REGINA FOR FIXES

No Warnings

Expand
titleℹ️ How To

(PE, Concurrent)

04 – Exceptions Only - Y

05 – Page break – just formatting

  •  SVRCALU
Expand
titleℹ️ How To

04 - Disp entries with zero values “N”

05 - Standard Rpt “S”

Panel
panelIconId23f3
panelIcon:hourglass_flowing_sand:
panelIconText
bgColor#F4F5F7

Runtime 7-10 minutes

  •  SVRCALS
Expand
titleℹ️ How To

04 - Standard Rpt “S”

...

Expand
titlePD0009231

ISSUE: SVRCALD CCFS-320 Detail Report and SVRCALS CCFS-320 Summary Reports Contact Hours totals do not match for the reporting period for all sections except ACTUAL, Part IV.

REPLICATION STEPS: 1. Create sections on SSASECT with appropriate Reporting Year and Attendance Method. 2. Populate dates on SSAACCL. 3. Register students in course prior to Census Date. 4. Run SVRCALX, SVRCALD and SVRCALS with the appropriate Academic Year, District ID and Reporting Period.

EXPECTED RESULT: The Contact Hours calculated for SVRCALD and SVRCALS should match for Resident and Non-Resident.

ACTUAL RESULT: The Contact Hours calculated for SVRCALD and SVRCALS do not match for Resident and Non-Resident. The Contact Hours balance in total, but are not the same for the Resident and Non-Resident columns between the reports.

SCREENSHOT: Defect PD0009231 Steps to Replicate SVRCALD SVRCALS CH totals do not match.docx

WORKAROUND: The Contact Hours value on SVRCALD are correct for Resident and Non-Resident and can be used for reporting.

  •  SVRCAL9 (Resident Codes of A, B, D as of 2023)

...

Info

Regarding drops. Sometimes Argos doesn't show dropped students but Banner does. Work with Velia but usually Banner is king.

  •  Compare summary to previous Annual

...

Form 320 Login (cccco.edu)

COLLEGE REPORTS

  •  SVRCALU feeds "Supplemental"

ATTENDANCE FTES* OF STATE RESIDENTS(and Non-Residents Attending Noncredit courses)

  •  SVRCALS feeds Flex-Time Activities | F Factor
Info

SOACALD/SSAACRL/SSAEXCL Data Entry - Functional - Confluence (atlassian.net)

DISTRICT REPORTS

  •  Part IX
Info

Pull from SVRCAL9

  •  NON CREDIT, NON-RESIDENT
    •  Part IV (in college forms) (see SVRCALS to see values prior to combining)
    •  CDCP section (page has a short timeout. save as you go)

...

Info

Documented in Backup Spreadsheet but tracked here.

  •  Look for cross term Positive Attendance Sections
    •  Add them if applicable.
Expand
titleHelpful Code Snippets to find cross term/fiscal year CRNs
Code Block
languagesql
--Cross Term Positive Attendance Sections
SELECT DISTINCT
            SSBSECT_TERM_CODE
            ,SSBSECT.SSBSECT_CRN
            ,SSBSECT.SSBSECT_SUBJ_CODE
            ,SSBSECT.SSBSECT_CRSE_NUMB
            ,SSBSECT.SSBSECT_ACCT_CODE
            ,SSBSECT_ENRL
            ,TO_VARCHAR(SSBSECT_PTRM_END_DATE, 'YYYY-MM-DD') AS SSBSECT_PTRM_END_DATE
FROM        COS_DATALAKEHOUSE.DATALAKE.COSBANNERPROD_SATURN_SSBSECT AS SSBSECT
JOIN        COS_DATALAKEHOUSE.DATALAKE.COSBANNERPROD_SATURN_STVTERM ON SSBSECT_TERM_CODE = STVTERM_CODE
JOIN        COS_DATALAKEHOUSE.DATALAKE.COSBANNERPROD_SATURN_STVACCT ON SSBSECT_ACCT_CODE = STVACCT_CODE
WHERE       SSBSECT_PTRM_END_DATE > STVTERM_END_DATE
    AND     STVACCT_ACTUAL_IND = 'Y'
    AND     SSBSECT.INVOKE_DATA_DATE = DATEADD(DAY, -1, CURRENT_DATE)
    AND     SSBSECT_TERM_CODE = :term_code
ORDER BY    SSBSECT_TERM_CODE DESC
;

--Positive Attendance Sections where course ends in Fiscal Year (320 Reporting Cycle) different than STVTERM_END_DATE
SELECT DISTINCT
    SSBSECT.SSBSECT_TERM_CODE,
    SSBSECT.SSBSECT_CRN,
    SSBSECT.SSBSECT_SUBJ_CODE,
    SSBSECT.SSBSECT_CRSE_NUMB,
    SSBSECT.SSBSECT_ENRL,
    SSBSECT_PTRM_CODE,
    SSBSECT_ACCT_CODE,
    TO_VARCHAR(SSBSECT_PTRM_END_DATE, 'YYYY-MM-DD') AS SSBSECT_PTRM_END_DATE,
    STVTERM_ACYR_CODE
FROM COS_DATALAKEHOUSE.DATALAKE.COSBANNERPROD_SATURN_SSBSECT AS SSBSECT
JOIN COS_DATALAKEHOUSE.DATALAKE.COSBANNERPROD_SATURN_STVTERM
    ON SSBSECT_TERM_CODE = STVTERM_CODE
JOIN COS_DATALAKEHOUSE.DATALAKE.COSBANNERPROD_SATURN_STVACCT
    ON SSBSECT_ACCT_CODE = STVACCT_CODE
WHERE SSBSECT_PTRM_END_DATE > (
    SELECT (FTVFSYR_END_DATE)
    FROM COS_DATALAKEHOUSE.DATALAKE.COSBANNERPROD_FIMSMGR_FTVFSYR
    WHERE FTVFSYR_FSYR_CODE = :fiscal_year
        AND INVOKE_DATA_DATE = DATEADD(DAY, -1, CURRENT_DATE)
)
    AND STVACCT_ACTUAL_IND = 'Y'
    AND SSBSECT.INVOKE_DATA_DATE = DATEADD(DAY, -1, CURRENT_DATE)
--    AND STVTERM_ACYR_CODE < CONCAT('20', :fiscal_year)+'1' --Removes future CRNs based off their future Academic Year
--    AND SSBSECT_TERM_CODE < CONCAT('20', :fiscal_year,'30') --Removes trailing summer that is included in future 320 cycles
--    AND SSBSECT_TERM_CODE = :term_code
ORDER BY SSBSECT_TERM_CODE DESC;
;

--Registration activity and contact hours w/ CA residency
SELECT          SFRSTCR.*
                ,RESIDENT.*
FROM            COS_DATALAKEHOUSE.DATALAKE.COSBANNERPROD_SATURN_SFRSTCR SFRSTCR
LEFT JOIN       DEV_DB.JOSHUAME.FV_DEMO_GET_RESIDENCY RESIDENT ON SFRSTCR.SFRSTCR_PIDM = RESIDENT.PIDM
    AND         SFRSTCR.SFRSTCR_TERM_CODE = RESIDENT.TERM_CODE
LEFT JOIN       COS_DATALAKEHOUSE.DATALAKE.COSBANNERPROD_SATURN_STVRESD AS STVRESD
    ON RESIDENT.SGBSTDN_RESD_CODE = STVRESD_CODE
WHERE           SFRSTCR.SFRSTCR_TERM_CODE = :term_code
AND             SFRSTCR.SFRSTCR_CRN = :CRN
AND             SFRSTCR.INVOKE_DATA_DATE = DATEADD(DAY, -1, CURRENT_DATE)
AND             STVRESD.STVRESD_IN_STATE_IND = 'I'
AND             STVRESD.INVOKE_DATA_DATE = DATEADD(DAY, -1, CURRENT_DATE);

--Sum of contact hours divided by 525 for FTES amount
SELECT          SUM(SFRSTCR.SFRSTCR_ATTEND_HR)/525
FROM            COS_DATALAKEHOUSE.DATALAKE.COSBANNERPROD_SATURN_SFRSTCR AS SFRSTCR
LEFT JOIN       DEV_DB.JOSHUAME.FV_DEMO_GET_RESIDENCY RESIDENT
    ON SFRSTCR.SFRSTCR_PIDM = RESIDENT.PIDM
           AND SFRSTCR.SFRSTCR_TERM_CODE = RESIDENT.TERM_CODE
LEFT JOIN       COS_DATALAKEHOUSE.DATALAKE.COSBANNERPROD_SATURN_STVRESD AS STVRESD
    ON RESIDENT.SGBSTDN_RESD_CODE = STVRESD_CODE
WHERE           SFRSTCR.SFRSTCR_TERM_CODE = :term_code
AND             SFRSTCR.SFRSTCR_CRN = :CRN
AND             SFRSTCR.INVOKE_DATA_DATE = DATEADD(DAY, -1, CURRENT_DATE)
AND             STVRESD.STVRESD_IN_STATE_IND = 'I'
AND             STVRESD.INVOKE_DATA_DATE = DATEADD(DAY, -1, CURRENT_DATE);

--D or ID ACCT_CODE for NC Sections
SELECT DISTINCT
            SSBSECT_TERM_CODE
            ,SSBSECT.SSBSECT_CRN
            ,SSBSECT.SSBSECT_SUBJ_CODE
            ,SSBSECT.SSBSECT_CRSE_NUMB
            ,SSBSECT.SSBSECT_ACCT_CODE
            ,SSBSECT_ENRL
FROM        COS_DATALAKEHOUSE.DATALAKE.COSBANNERPROD_SATURN_SSBSECT AS SSBSECT
WHERE       SSBSECT.INVOKE_DATA_DATE = DATEADD(DAY, -1, CURRENT_DATE)
    AND     SSBSECT_TERM_CODE = :term_code
    AND     SSBSECT_ACCT_CODE IN ('D','ID')
    AND     SSBSECT_CRSE_NUMB LIKE '4%'
ORDER BY    SSBSECT_TERM_CODE DESC
  •  ADD CARRY FORWARD from 2022 RECAL

Added to District Totals & Center Totals

FTES Total

 

 

 

 

 Campus/District 

 Resident 

Resident Ext Hours 

 Non-Resident 

 Totals 

 Hanford 

17.90

13.20

0.45

31.54

 Tulare 

187.04

 

1.67

188.70

 District (includes HAC,TCC)

276.97

25.79

2.50

305.26

SSBSECT\_TERM\_CODE

SSBSECT\_CRN

SSBSECT\_SUBJ\_CODE

SSBSECT\_CRSE\_NUMB

SSBSECT\_ACCT\_CODE

SSBSECT\_ENRL

SSBSECT\_PTRM\_END\_DATE

Resident FTES

NonResident FTES

202320

25484

PS

200M1

P

51

2023-07-19

40.06 (21031.5 CH)

.82 (430.5 CH)

  •  ADD CARRY FORWARD from 2023 Annual

Added to District Totals

P1 and P2 do not allow CENTER FTES adjustments

By Accounting Method

Contact Hours - Daily 

 Campus/District 

 Resident 

 Resident Ext Hours 

 Non-Resident 

 Totals 

 Hanford 

           6,561.90

181          7,127.70          6

       7,743127.6070

 Tulare 

           5          7,409208.60

52.90

          5,462.5020

       7,208.20

 District (includes HAC,TCC) 

         30       44,521976.50

6 7,610767.20

439.30

       37,571.00     52,743.70

Contact Hours - Independent Daily 

 Campus/District 

 Resident 

 Resident Ext Hours 

 Non-Resident 

 Totals 

 Hanford 

           2          3,835272.0050

 67,930350.00

 52.50

          9,817     10,622.50

 Tulare 

         92     106,785942.0050 822

175.5000

       93   107,607117.50

 District (includes HAC,TCC) 

       114     123,887258.5090

 67,930350.00

                       875175.00

     122   130,692783.5090

Expand
titleCensus Date or End Date is > 7/1
Info

Sorry for the delay on this. I’m inclined to say these Alternative Attendance Accounting Procedure-Daily Census courses also have the summer shift reporting option. Title 5 section 58010(a) states “Full-time equivalent student for courses using census procedure may be reported in either the fiscal year in which the census day procedure is completed or in which the course ends.” I know that this provision does not apply to positive attendance courses (those must be reported in the period in which the course ends), however, I do not see any reason that it would not apply to courses on the alternative attendance accounting procedure- daily census.

As is the case with regular daily census courses, you would want to make sure that appropriate records are maintained to show that FTES were claimed appropriately and not claimed in both fiscal years.

-Natalie Wagner 7/15/2021

  •  Remove CARRY FORWARD
    •  No Non-Resident TSCH are showing up for D/ID on Term 202330. Wrote query to find if true.
Code Block
languagesql
--NonResident TSCH are showing up for D/ID for a given term
SELECT          SSBSECT.SSBSECT_TERM_CODE
                ,SSBSECT.SSBSECT_CRN
                ,SSBSECT.SSBSECT_PTRM_END_DATE
                ,SSBSECT.SSBSECT_CAMP_CODE
                ,COUNT(SFRSTCR.SFRSTCR_PIDM)
FROM            COS_DATALAKEHOUSE.DATALAKE.COSBANNERPROD_SATURN_SFRSTCR AS SFRSTCR
LEFT JOIN       DEV_DB.JOSHUAME.FV_DEMO_GET_RESIDENCY RESIDENT
    ON SFRSTCR.SFRSTCR_PIDM = RESIDENT.PIDM
           AND SFRSTCR.SFRSTCR_TERM_CODE = RESIDENT.TERM_CODE
LEFT JOIN       COS_DATALAKEHOUSE.DATALAKE.COSBANNERPROD_SATURN_STVRESD AS STVRESD
    ON RESIDENT.SGBSTDN_RESD_CODE = STVRESD_CODE
INNER JOIN      COS_DATALAKEHOUSE.DATALAKE.COSBANNERPROD_SATURN_SSBSECT AS SSBSECT
    ON SFRSTCR_TERM_CODE = SSBSECT.SSBSECT_TERM_CODE
            AND SFRSTCR_CRN = SSBSECT_CRN
WHERE           SFRSTCR.SFRSTCR_TERM_CODE = :term_code
AND             SSBSECT_PTRM_END_DATE > CONCAT(:YYYYMMDD) --Follow this format 'YYYY-MM-DD' and include the ' '
AND             STVRESD.STVRESD_IN_STATE_IND <> 'I'
AND             SSBSECT.SSBSECT_ACCT_CODE IN ('D','ID')
AND             SSBSECT_CAMP_CODE <> 'COS'
AND             SFRSTCR.INVOKE_DATA_DATE = DATEADD(DAY, -1, CURRENT_DATE)
AND             STVRESD.INVOKE_DATA_DATE = DATEADD(DAY, -1, CURRENT_DATE)
AND             SSBSECT.INVOKE_DATA_DATE = DATEADD(DAY, -1, CURRENT_DATE)
GROUP BY        SSBSECT_TERM_CODE, SSBSECT_CRN, SSBSECT_CAMP_CODE,SSBSECT_PTRM_END_DATE;

Wasn’t true so I went looking for defects and found one:

Warning

Standard Ticket - Customer Center (service-now.com) - PD0006871

Info

California Release 8.17 has the resolution for above defect. COS locally scheduled go live for 8.17 is in August 2023.

  • Defect didn’t persist in SVRCALD w/ Student Details so that was used to find those allowable Carry Forward sections and TSCH amounts.

FTES difference between 2023 Carry Forward for Non-Resident students (.33 FTES) and last Recal cycle in 2022 (2.7 FTES) is notable, but can’t find any errors w/ that field.

  • (Not relevant for P1)