Modules

filter

 

Objects/Functions

module (N/query)

SuiteScript 2.0

Sort.column

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

N/query Module
Sort.column
Property Description: The query result column that the query results are sorted by. This property is set during the execution of Query.createSort(options) and Component.createSort(options).
Type: query.Column (read-only)
Module: N/query Module
Parent Object: query.Sort
Sibling Object Members: Sort Object Members
Since: 2018.1
Search NetSuite - https://system.netsuite.com/app/help/helpcenter.nl?search=Sort.column

Example:

// Code Example 1
// Add additional code
//...
var myCustomerQuery = query.create({
type: query.Type.CUSTOMER
});

myCustomerQuery.columns = [
myCustomerQuery.createColumn({
fieldId: 'entityid'
})
];

myCustomerQuery.sort = [
myCustomerQuery.createSort({
column: myCustomerQuery.columns[0],
ascending: false,
caseSensitive: true,
locale: query.SortLocale.EN_CA,
nullsLast: false
})
];

var theColumn = myCustomerQuery.sort[0].column;
//...
// Add additional code

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