Discussions
Stay up-to-date with the latest news from NetSuite. You’ll be in the know about how to connect with peers and take your business to new heights at our virtual, in-person, on demand events, and much more.
Now is the time to ask your NetSuite-savvy friends and colleagues to join the NetSuite Support Community! Refer now! Click here to watch and learn more!
Update your Profile with your Support type to get your Support Type badge.
Uncover the power of data with the Analytics Hub —your ultimate guide to mastering NetSuite Saved Searches and Reports. Simplify the complex and unlock your organization's true potential. Dive into the Analytics Hub now and soar to new heights!
NetSuite 2025.2 Release Notes - This document summarizes the changes to NetSuite between 2025.2 and the previous release.
To help you get the most out of your 2025.2 Release Preview account, review the topics outlined in the 2025.2 Release Preview Guide.
SuiteWorld October 6 - 9, 2025: Agenda Builder is live!
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!
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!
Trouble with some Scripting - Wont run :-( PLEASE HELP
Hi there, I am putting the following code into an item template, and rightly or wrongly, I am expecting it to search the current item and tell me how much stock is (available) at location (1). Am I missing something major here, do I need to insert it somewhere differently, or add code to make it run? At present it appears to do nothing, even looking at the source, I can see my code, but there are no results in it.....
function beforeSubmit(type) { var itemRecord = nlapiGetNewRecord() var vitemId = itemRecord.getId(); var filters = new Array(); filters[filters.length] = new nlobjSearchFilter('internalid', null, 'anyof', vitemId, null) filters[filters.length] = new nlobjSearchFilter('inventorylocation', null, 'anyof', 1, null) var columns = new Array(); columns[columns.length] = new nlobjSearchColumn('inventorylocation',null,null); columns[columns.length] = new nlobjSearchColumn('locationquantityavailable',null,null); var searchresults = nlapiSearchRecord('item', null, filters, columns); for ( var i=0; searchresults != null && i < searchresults.length; i++) { var searchresult = searchresults[i]; var vinventorylocation = searchresult.getValue('inventorylocation'); var vlocationquantityavailable = searchresult.getValue('locationquantityavailable'); // The v12:33pm is to make sure there is not a cached version of this *.js nlapiLogExecution("Debug", "ItemLocation Values", "v12:33pm-" + vinventorylocation +
0