Skip to main content

QUICK SETUP FOR PAYROLL PROCESSING.

 

QUICK SETUP FOR PAYROLL PROCESSING.

 

For any business, one of the most essential components involves proper management of their payroll. Companies must make sure employees get paid on time, have proper salary compensation, receive payslips, and perform other activities related to their payroll. More importantly, the payroll of a company must comply with the country’s government legislation.

With Centrahub HCM, you can manage all your payroll activities in the most seamless way. Central hub hcm Payroll is a cloud-based payroll management system that automatically calculates salaries, taxes and deductions, sends payslips out every month and performs all other payroll activities.

1.     MANAGING ORGANIZATIONAL DATA. 

Bring all your existing data into our HCM application with minimum effort. Follow our pre-defined wizard to import/enter company, statutory, security, preferences, etc. and eliminate duplicates and reduce manual work.

You can modify the organization details which you entered during the setup process.

2.     STRAIGHT FORWARD STATUTORY COMPLIANCE.

Steer your business clear of compliance penalties. We handle your statutory compliance including (PF, PT, ESI, LWF, and IT) and make filing easy with tax reports.

3.    UNIQUE PROFILES & ROLES FOR USERS.

Create multiple user profiles & roles to help your finance, admin, and auditing teams collaborate effortlessly. Ensure data integrity by granting users role-based access to the specific modules they need.

4.     PERSONALIZED SALARY COMPONENTS.

 Choose different monthly inputs, earnings, deductions, leaves & loans. Easily enable or disable individual components, and Payroll will adjust to your settings and calculate the right pay.

We also have the provision to add new components

5.     CUSTOMIZATION OF FIELDS & AUTHORIZATION FLOWS MADE EASY.

If you are unable to find the desired field, create a new field or update the existing field as per your requirement

Create approval workflows and ensure payroll runs get processed only after they get the go-ahead from you or your payroll administrator.

6.     STAY INFORMED WITH TIMELY NOTIFICATIONS.

Receive personalized notifications and stay on top of everything that happens within your approvals.

7.     PROFESSIONAL LOOKING TEMPLATES.

Choose from our collection of templates to build payslips, leave settlements & End of service with a clear breakdown of salary components, allowances, taxes withheld, and deductions.

8.     IMPORTING OF DATA FOR THE NEXT PAYROLL CYCLE.

Import all the data that are required to build an employer’s payroll, that is company details, users information, preferences & much more. 


For more info please watch the tutorial below.

https://drive.google.com/file/d/1pXC9FJ1EBhdInJnSOHJEYRGRx4Bh_rSl/view?usp=sharing



Comments

Popular posts from this blog

TDS details in Payslip

TDS variables are added in the payslip to display the tax details for employees. These variables will give a clear idea to the employee of what is the taxable income, total tax per year to be deducted, tax deducted till date and the balance tax which he needs to pay. Follow the steps below. 1. Create the payroll components as mentioned below under Deductions. TDS_TotalTaxableIncome TDS_TotalTax TDS_PrevEmployerTDS TDS_TaxDeductedYTD TDS_BalanceTax 2. Go to deduction preferences, and add the TDS variable exactly with the same name under formula. Below is the screen shot for reference. 3. The values of TDS variables will be displayed in the payroll preview screen. The same will be displayed in the payslip, once these variables are mapped to the payslip. Note: 1. Priority Order: TDS variables should be placed after TDS component. Sample Payslip with TDS variable:

Advance Leave Encashment

This option is for leave encashment for advance leaves. There are two scenarios here: 1. If payment type is selected as continuous in leave encashment screen, then the leave encashment salary will be credited through the payroll. 2. If payment type is selected as advance in leave encashment screen, then the leave encashment salary will not be credited through payroll but in the print layout, encash amount can be viewed. Settings>>Customization>>Leaves>>Leave Encashment>>Print layout Note: Employee Account and Salary Account should be mapped in the Employee master Follow the below steps for FA posting: 1. Create two account master fields in leave encashment screen as shown in the below screen. In the above two screens, two accounts are created. One is Company account in the first screen and Emp account in the second screen. Employee account is created to credit the encash amount and add these two fields in page layout of leave encashment. 2. Run below stored pro...

Using Stored Procedure in the Earning/Deduction Formulas

Naming Convention : Stored Procedure Name : pPay_GetData1 Variable to use above stored procedure : fPay1 Advantages: we can assign multiple earning/deduction values using single stored procedure Eg : CREATE PROCEDURE pPay_GetData1 (      @xmlIn AS XML = NULL      ,@xmlOut AS XML = NULL OUT      ,@Result AS DECIMAL(18, 4) OUT      ) AS BEGIN      SET NOCOUNT ON;      SET @xmlOut = @xmlIn     DECLARE @EmpId AS VARCHAR(max),@PayrollRefType AS VARCHAR(100)      declare @ToDate as int=0     declare @BonusFromDate as int=0,@BonusToDate as int=0     --Retriving Employee Id      SELECT @EmpId = v.value('iEmpId[1]', 'varchar(max)')      FROM @xmlIn.nodes('/PayrollData') x(v)     --Retriving Payroll Date      SELECT @ToDate = v.value('...