Modules

filter

 

Objects/Functions

module (N/workbook)

SuiteScript 2.0

Workbook.description

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

N/workbook Module
Workbook.description
Property Description: The description of the workbook. This is set when you create a workbook.
Type: string
Module: N/workbook Module
Parent Object: workbook.Workbook
Sibling Object Members: Workbook Object Members
Since: 2020.2
Search NetSuite - https://system.netsuite.com/app/help/helpcenter.nl?search=Workbook.description

Example:

// Code Example 1
// Add additional code
//...
// View a workbook's description
var myWorkbook = workbook.load({
id: myWorkbookId
});
log.audit({
title: 'Workbook.description = ',
details: myWorkbook.description
});
//...
// Add additional code

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