search.Filter
Object Description |
Encapsulates a search filter used in a search. Use the properties for the Filter object to get and set the filter properties. You create a search filter object with search.createFilter(options) and add it to a search.Search object that you create with search.create(options) or load with search.load(options).
Note:
NetSuite uses an implicit Use the following guidelines with the Filter object:
|
Module |
|
Methods and Properties |
|
Since |
2015.2 |
Syntax
The following code sample shows the syntax for this member. It is not a functional example. For a complete script example, see N/search Module Script Samples.
//Add additional code
...
var mySearchFilter = search.createFilter({
name: 'entity',
operator: search.Operator.ISEMPTY,
});
...
//Add additional code