Sunday, April 28, 2019

Scripted saved search on Script Deployment record using script ID as filter

With the release 2013.2, script deployments are now exposed for scripting. This article provides a a snippet on how you can perform a scripted saved search on the Script Deployment record using the ID (id: scriptid) to return the deployment's Internal ID.

var filters = new Array();
filters[0] = new nlobjSearchFilter('scriptid', null, 'is', 'customdeploycustomscriptcustomscript_sui'); //this is the value you can see of the deployment's ID field
var columns = new Array(); 
columns[0] = new nlobjSearchColumn('internalid');
var rec = nlapiSearchRecord('scriptdeployment', null, filters, columns);

No comments:

Post a Comment