Employee Status

Employee status values can be used to categorize employees' work status. Example values include part-time, full-time, temporary, regular. These values display on the Human Resources subtab of employee records.

For help working with this record in the user interface, see Setting Up Employee Related Lists.

The internal ID for this record is employeestatus.

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:

Supported Script Types

The employee status record is scriptable in both client and server SuiteScript.

Supported Functions

The following SuiteScript functionality is supported:

Script Sample

The following sample shows how to create an employee status record.

          require(['N/record'], function (record) {
    var myRecord = record.create({
        type: record.Type.EMPLOYEE_STATUS
    });
    myRecord.setValue({
        fieldId: 'name',
        value: Active
    });
    myRecord.save();
 }); 

        

Related Topics

Setting Up Employee Related Lists
Working with the SuiteScript Records Browser
SuiteScript Supported Records
Entities

General Notices