Payroll System: How to Compute SSS

Are you struggling on how to compute the SSS of the employee based on the “Schedule of SS and EC Contributions” table? This project will let you compute the Employee Share, Employer Share, and EC based on the gross income of the employee.

The SSS Contribution is computed semi-monthly. The gross income is divided into two and the 2nd half of the month is computed based on the 1st half of the month to get the exact deduction for the whole month.

For example if the contribution of the employee for the whole month is 133.30 and he/she is deducted 100.00 for the 1st half of the month then his/her 2nd half should be 33.30 to get 133.30.

The Schedule of SS and EC Contributions is saved in the database for easy retrievable. This is useful if the table is change and can be edited easily.

If you want the whole programs that also compute PhilHealth, Pag-ibig, and W/Tax please don’t hesitate to contact me. You may also download my simple Payroll System.

Note: This computation of SSS contribution is applicable only in the Philippines.

Note: Due to the size or complexity of this submission, the author has submitted it as a .zip file to shorten your download time. After downloading it, you will need a program like Winzip to decompress it.

Virus note: All files are scanned once-a-day by SourceCodester.com for viruses, but new viruses come out every day, so no prevention program can catch 100% of them.

FOR YOUR OWN SAFETY, PLEASE:

1. Re-scan downloaded files using your personal virus checker before using it.
2. NEVER, EVER run compiled files (.exe's, .ocx's, .dll's etc.)--only run source code.

Comments

Submitted byLarry Herosa (not verified)on Fri, 04/17/2015 - 18:18

There is no actual computation of SSS/PhilHealth Contri.... What you need is a table ref to search for the amount of SSS contri monthly and base on the total monthly Taxable earnings(not GROSS) you can get the amount of SSS Employee Share in which you can max it on the first half of the month or you can have another table ref for semi-monthly SSS Table. Here is somple code to help: strQry = "SELECT * FROM [TBL-SSSHlthPag] WHERE " strQry = strQry & " Type ='SSS'" strQry = strQry & " AND '" & ModC(curTaxable) & "' BETWEEN AmountFrom AND AmountTo" Set rsBenefits = New ADODB.Recordset Set rsBenefits = CN.Execute (strQry) if Not EndofMonth then 'SSS computation for first half(1-15): If Not rsBenefits.EOF Then rsBenefits.MoveLast vSSSYee = (rsBenefits.Fields("EmployeeShare"))/2 vECC = (rsBenefits.Fields("EC") vSSSYer = (rsBenefits.Fields("EmployerShare"))/2 End If Else 'SSS computation for first half(16-endofmonth): PrevECC={search for the prev ecc of the same month/year on the payroll} PrevSSSYee={search for the prev SSS Employee Share of the same month/year on the payroll} PrevSSSYer={search for the prev SSS Employer Share of the same month/year on the payroll} If Not rsBenefits.EOF Then rsBenefits.MoveLast vSSSYee = IIf((rsBenefits.Fields("EmployeeShare")) - ModC(IIf(![FixSSS], 0, PrevSSSYee))

Add new comment