Modules

filter

 

Objects/Functions

module (N/workbook)

SuiteScript 2.0

TableColumn.datasetColumnId

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

N/workbook Module
TableColumn.datasetColumnId
Property Description: The ID of the dataset column from which the table column was created.
Type: number
Module: N/workbook Module
Parent Object: workbook.TableColumn
Sibling Object Members: TableColumn Object Members
Since: 2020.2
Search NetSuite - https://system.netsuite.com/app/help/helpcenter.nl?search=TableColumn.datasetColumnId

Example:

// Code Example 1
// Add additional code
//...
// View TableColumn.datasetColumnId in a TableDefinition
var myWorkbook = workbook.load({
id: myWorkbookId
});

log.audit({
title: 'TableColumn.datasetColumnId = ',
details: myWorkbook.tableDefinitions[0].columns[0].datasetColumnId
});
//...
// Add additional code

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