Job

The Job Management feature must be enabled to script with this record.

The internal ID for this record is job.

For help working with this record in the user interface, see Managing Jobs.

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 job record is scriptable in both client and server SuiteScript.

Supported Functions

The job record can be read, created, updated, searched, and deleted using SuiteScript. It cannot be copied or transformed.

Usage Notes

The Assigned Employees sublist and Job Requisition sublist are not available to SuiteScript.

Code Sample

          function beforeLoad(type, form, request){    
// rec in all following statements has been previous defined (created/loaded) as a Job record
    rec.setValue({
        fieldId: 'title',
        value: 'abc'
    });
    rec.setValue({
        fieldId: 'description',
        value: 'test description'
    });
    rec.setValue({
        fieldId: 'isinactive',
        value: 'F'
    });
 } 

        

Related Topics

Managing Jobs
Working with the SuiteScript Records Browser
SuiteScript Supported Records
Entities

General Notices