|
|
 |
|
Payroll Frequently Asked Questions
My paycheck stub shows a deduction of $0.17 for FLEX-ADMIN,
what is this?
When an employee pays any portion of their health premium the State
Controller's Office charges an administrative fee of $0.17 to forward
your payment to the carrier.
How will my net pay be affected if I change my Exemptions?
You can figure out what your net pay will be by using the
2007 Paycheck Calculator (.xls).
When is the Employee Action Request to change my exemptions due
in payroll?
This form should be in by the Payroll cutoff date to affect the current
month's paycheck, usually around the 20th of the month.
Current
Calendar » (.pdf) Cutoff days are indicated by
.
How can I get a copy of my W-2?
The State Controller's Office mails the W-2's by mid-January for the previous tax
year. To receive a duplicate W-2, complete the State Controller's Office
form (.pdf).
Each duplicate W-2 form costs $8.50, which will need to be sent to the State
Controller's Office with the form.
How many exemptions may I claim before the IRS is notified?
The State Controller's Office will notify the IRS when an employee claims
11 dependents or more.
What do I do if I lost my paycheck?
Please contact the Payroll Office (1-4082 or 1-4083) immediately so a stop
payment can be placed on the check. |
|
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)
%>
|