Paycheck

This record is available only when the Payroll feature is enabled at Setup > Company > Enable Features on the Employees subtab.

In the UI, you can access this record at Transactions > Employees > Create Payroll.

For help working with this record in the UI, see Creating a Payroll Batch and Editing an Individual Paycheck from a Payroll Batch.

The internal ID for this record is paycheck.

See the SuiteScript Records Browser for all internal IDs associated with this record.

Note:

For information about using the SuiteScript Records Browser, see Working with the SuiteScript Records Browser in the NetSuite Help Center.

For information about scripting with this record in SuiteScript, see the following help topics:

Supported Script Types

This record is scriptable in both client and server SuiteScript.

Supported Functions

The paycheck record is partially scriptable. It can be read and updated only.

Usage Notes

Be aware of the following:

Code Samples

The following sample shows how to search for paycheck records.

          var mySearch = search.create ({

    type: search.Type.PAYCHECK,

    columns: [{

        name: 'batchnumber',

    }, {

        name: 'employee',

    }],

    filters: [{

        name: 'batchnumber',

        operator: search.Operator.EQUALTO,

        values: 100

    }],

}); 

        

Related Topics

General Notices