|
|
 |
|
Vacation |
Employees earn vacation time depending on their position and length of service. Here is information on vacation time accrual and how to request vacation.
Monthly Vacation Accrual
| Employee Classification |
Length of Service |
Hours Per Month |
| Executive, MPP and Confidential |
n/a |
16 |
| Units 6 (SETC), 7 and 9 (CSEA) |
1 month - 3 years |
6 2/3 |
| |
37 months - 6 years |
10 |
| |
73 months - 10 years |
11 1/3 |
| |
121 months - 15 years |
12 2/3 |
| |
181 months - 20 years |
14 |
| |
241 months - 25 years |
15 1/3 |
| |
301 months+ |
16 |
| Part-time employees |
Pro rata basis |
|
Maximum Accrual
| Employee Classification |
Less than 10 yrs. |
More than 10 yrs. |
Hours |
| MPP |
X |
|
384 |
| MPP |
|
X |
440 |
| Units 6 (SETC), 7 and 9 (CSEA) |
X |
|
272 |
| Units 6 (SETC), 7 and 9 (CSEA) |
|
X |
384 |
| Confidential |
|
|
384 |
| Executive |
|
|
480 |
- Employees must receive 11 days of pay in the pay period to accrue vacation credits for that month. Vacation credits may not be used prior to their accrual, which occurs on the first day of the following pay period.
- Vacation requests must be submitted in advance to an employee's supervisor for approval. Based upon the operational needs of the department, vacations shall be scheduled and taken only as authorized by the appropriate administrator.
- Employees can view their vacation and sick leave balances using PeopleSoft self-service. The reference guide provides navigation instructions.
- Upon separation from the Chancellor's Office, employees are entitled to a lump sum payment of unused vacation time.
|
|
Last Updated:
<%
'Dim strFileName
'Dim dtmLastModified
'Dim dtmLastModifiedDate
'Dim dtmLastModifiedTime
Dim strFileName, strFileNameCalendar, objFile, objFileSystemObject
Dim dtmLastModified, dtmLastModifiedDate, dtmLastModifiedTime
Dim sLastModifiedMonth
strFileName = Request.ServerVariables("SCRIPT_NAME")
strFileName = Replace(strFileName, "/", "\")
strFileName = Server.MapPath(strFileName)
Set objFileSystemObject = Server.CreateObject("Scripting.FileSystemObject")
Set objFile = objFileSystemObject.GetFile(strFileName)
dtmLastModified = objFile.DateLastModified
Set objFile = Nothing
Set objFileSystemObject = Nothing
dtmLastModifiedDate = FormatDateTime(dtmLastModified, 1)
dtmLastModifiedTime = FormatDateTime(dtmLastModified, 3)
Select Case Month(dtmLastModified)
Case 1
sLastModifiedMonth = "January"
Case 2
sLastModifiedMonth = "February"
Case 3
sLastModifiedMonth = "March"
Case 4
sLastModifiedMonth = "April"
Case 5
sLastModifiedMonth = "May"
Case 6
sLastModifiedMonth = "June"
Case 7
sLastModifiedMonth = "July"
Case 8
sLastModifiedMonth = "August"
Case 9
sLastModifiedMonth = "September"
Case 10
sLastModifiedMonth = "October"
Case 11
sLastModifiedMonth = "November"
Case 12
sLastModifiedMonth = "December"
End Select
Response.Write sLastModifiedMonth & " " & Day(dtmLastModified) & ", " & Year(dtmLastModified)
%>
|