Issue Product

The use of products on issue records helps determine which product team is responsible for the resolution of that issue.

For help working with this record in the UI, see Working with Products and Modules.

The internal ID for this record is issueproduct.

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

Supported Script Types

The issue record is scriptable in both server and client SuiteScript.

Supported Functions

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

Code Sample

The following script example illustrates how to create an issue product record.

          var product = record.create({
    type: record.Type.ISSUE_PRODUCT
});
product.setFieldValue({
    fieldId: 'issueproduct',
    value: 'new product'
});
var productId = product.save(); 

        

Related Topics

General Notices