Modules

filter

 

Objects/Functions

module (N/query)

SuiteScript 2.0

Query.name

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

N/query Module
Query.name
Property Description: The name of the query definition. This property has a value only for existing queries that are loaded using query.load(options). If you create a query using query.create(options) but do not save it, this property is null. The N/query module lets you create and run queries using the SuiteAnalytics Workbook query engine. You can use the N/query module to load and delete existing queries, but you cannot save queries. You can save queries using the SuiteAnalytics Workbook interface. For more information, see Navigating SuiteAnalytics Workbook.
Type: string (read-only)
Module: N/query Module
Parent Object: query.Query
Sibling Object Members: Query Object Members
Since: 2018.1
Search NetSuite - https://system.netsuite.com/app/help/helpcenter.nl?search=Query.name

Example:

// Code Example 1
// Add additional code
//...
var myLoadedQuery = query.load({
id: 'custworkbook237'
});

var theName = myLoadedQuery.name;
//...
// Add additional code

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