Performance Review Schedule

The internal ID for this record is performancereviewschedule. For more details about this record and how to work with it in the UI, see Scheduling Performance Reviews.

This record becomes available when the Performance Management feature is enabled.

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:

Support Script Types

This record is scriptable in both server and client SuiteScript.

Supported Functions

This record is fully scriptable, which means it can be created, edited, copied, deleted, and searched.

Code Sample

The following sample shows how to open a performance review schedule record, change its name, and then save the record.

            var schedule= record.load({
   type: record.Type.PERFORMANCE_REVIEW_SCHEDULE,
   id: 1
});

schedule.setValue({
   fieldId: 'name',
   value: 'Engineering Dept, Q2 2020'
});

schedule.save(); 

          

Related Topics

Performance Reviews
Working with the SuiteScript Records Browser
SuiteCloud Supported Records
Lists

General Notices