Modules

filter

 

Objects/Functions

module (N/dataset)

SuiteScript 2.0

Column.fieldId

// Please search https://system.netsuite.com/app/help/helpcenter.nl?search=Column.fieldId for more information.

N/dataset Module
Column.fieldId
Property Description: The ID of the record field associated with the column.
Type: string (read-only)
Module: N/dataset Module
Parent Object: dataset.Column
Sibling Object Members: Column Object Members
Since: 2020.2
Search NetSuite - https://system.netsuite.com/app/help/helpcenter.nl?search=Column.fieldId

Example:

// Code Example 1
// Add additional code
//...
// View Column.field
var myDataset = dataset.load({
id: myDatasetId
});

log.audit({
title: 'Column.fieldId = ',
details: myDataset.columns[0].fieldId
});
//...
// Add additional code

//SOURCE: https://system.netsuite.com/app/help/helpcenter.nl?fid=section_158946870976.html