search.create.promise(options)
Method Description |
Creates a new search asynchronously and returns it as a search.Search object.
Note:
The parameters and errors thrown for this method are the same as those for search.create(options). For more information about promises, see Promise Object. |
Returns |
|
Synchronous Version |
|
Supported Script Types |
Client and server scripts For more information, see SuiteScript 2.x Script Types. |
Governance |
None |
Module |
|
Since |
2015.2 |
Syntax
The following code sample shows the syntax for this member. It is not a functional example. For a complete promise script example, see Promise Object.
//Add additional code
...
search.create.promise({
type: search.Type.SALES_ORDER
})
.then(function(result) {
log.debug({
details: "Completed: " + result
});
// do something after completion
})
.catch(function(reason) {
log.debug({
details: "Failed: " + reason
})
// do something on failure
});
...
//Add additional code