Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 7 Next »

👟 Run 1

Date: Not Yet Ran

Baseline

  • SVAAPIZ
 ℹ️ How To

Populate Academic Year

District: Do it for 561

Reporting Period:

P1 - 2

P2 - 1

Annual - 1

  • SVRCALX
    • Sort through the list and resolve errors prior to next step

Exception CRNs not reported: Actual CRN with no reportable student attendance hours.
202310 First Primary GEOL 151 17092 0 A COS P Geology of the Mojave Desert
202310 First Primary IA 047AD 16813 0 A COS P Strategies of Sport
202310 First Primary IA 049AD 16815 0 A COS P Performance of Sport
202310 First Primary PTA 400 16232 0 A COS P PTA Skills Lab
202310 First Primary PTA 400 16233 0 A COS P PTA Skills Lab
202310 First Primary PTA 400 16234 0 A COS P PTA Skills Lab

Emailed instructors, cc’d deans in January. Reminded deans February.

Runtime ~5 minutes

 ℹ️ How To

04 – Include Exceptions - "Y"

  • SVRCALD (Student Details and Non)

Runtime ~1 minutes

  • SEND "*WARNING* Total CH is not equal to (Length Mult * Std CH)" To Vanessa Escobar it's about Attendance Method
  • SVRCALP

Runtime <1 minutes

  • SEND TO REGINA FOR FIXES
 ℹ️ How To

(PE, Concurrent)

04 – Exceptions Only - "Y"

05 – Page break – just formatting

  • SVRCALU
 ℹ️ How To

04 - Disp entries with zero values “N”

05 - Standard Rpt “S”

Runtime Fast

  • SVRCALS
 ℹ️ How To

04 - Standard Rpt “S”

Runtime 7-10ish

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

Runtime ~5 minutes

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

(Hard to compare given pandemic shifts.)

COLLEGE REPORTS

  • SVRCALU feeds "Supplemental"

ATTENDANCE FTES* OF STATE RESIDENTS(and Nonresidents Attending Noncredit courses)

DISTRICT REPORTS

  • Part IX

Pull from SVRCAL9

  • NON CREDIT, NON RESIDENT
    • Part IV (see SVRCALS to see values prior to combining)
    • CDCP section (in college forms)

SVRCALU populates this.

For noncredit FTES (including CDCP noncredit) the attendance of both residents and nonresidents is reported in the Residents column of Part IV and in the CDCP section of the report. - Natalie Wagner

COCI drives the CDCP portion.

Manual Edits

Documented in Backup Spreadsheet but tracked here.

  • Add PS 200M1

TERM

CRN

SUBJ_CODE

CRSE_NUMB

ENRL

PTRM_END_DATE

In 22-23, 320 P2?

202220

25484

PS

200M1

44 (43 Res)

2022-07-20

No, missing 35.29 FTES

 Helpful Code Snippets to find cross term/fiscal year CRNs
--Cross Term Positive Attendance Sections
SELECT DISTINCT
            SSBSECT_TERM_CODE
            ,SSBSECT.SSBSECT_CRN
            ,SSBSECT.SSBSECT_SUBJ_CODE
            ,SSBSECT.SSBSECT_CRSE_NUMB
            ,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);
  • ADD CARRY FORWARD

Added to District Totals

P1 and P2 do not allow CENTER FTES adjustments

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

By Accounting Method

Contact Hours - Daily 

 Campus/District 

 Resident 

 Resident Ext Hours 

 Non Resident 

 Totals 

 Hanford 

           6,561.90

181.70

          6,743.60

 Tulare 

           5,409.60

52.90

          5,462.50

 District (includes HAC,TCC) 

         30,521.50

6,610.20

439.30

       37,571.00

Contact Hours - Independent Daily 

 Campus/District 

 Resident 

 Resident Ext Hours 

 Non Resident 

 Totals 

 Hanford 

           2,835.00

 6,930.00

 52.50

          9,817.50

 Tulare 

         92,785.00

 822.50

       93,607.50

 District (includes HAC,TCC) 

       114,887.50

 6,930.00

                       875.00

     122,692.50

 Census Date or End Date is > 7/1

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 not applicable on P2.
  • No labels

0 Comments

You are not logged in. Any changes you make will be marked as anonymous. You may want to Log In if you already have an account.