Employee Type

Employee type values are used to categorize employees for descriptive or reporting purposes. These values display on the Human Resources subtab of employee records. System-defined values include the following: Contractor, Exempt (in the U.S., an employee not entitled to overtime pay), Officer, Owner, Regular Employee, and Statutory Employee.

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

The internal ID for this record is employeetype.

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 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 type record.

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

        

Related Topics

General Notices