Discussions
Read on for the latest updates including:
• Agenda Builder launch
• SuiteWorld On Air registration
• New NetSuite Prompt Studio Contest
• And more!
Check out this thread to learn more!
Is there a way to close Return Auth records outside of a script? HELP!
Is there a way to close Return Auth records outside of a script? Initially I was hoping to schedule it with a workflow, until I came across a SuiteAnswers article that I could only close bulk of returns with the following script?
function formSuitelet(request, response){
if ( request.getMethod() == 'GET' )
{
var form = nlapiCreateForm('Bulk Close RMA');
form.addSubmitButton('Submit');
response.writePage( form );
}else{
var searchresults = nlapiSearchRecord(null,'customsearch975');
// 'customsearch975' is the internal ID of the custom saved search used to filter the records that the user would like to close
for ( var i = 0; searchresults != null && i < searchresults.length; i++ )