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!
Don’t miss your chance to meet our SuiteGurus—NetSuite Support professionals and subject matter experts with extensive experience in select product areas, including OneWorld, Advanced & Basic Accounting, Supply Chain Management, Receivables & Payables, CRM, Account Administration, and the SuiteCloud Platform. Full Conference attendees can prebook exclusive 30-minute one-on-one sessions for your product questions.
Spots are limited! Register through your Agenda Builder and find SuiteGuru under Agenda Enhancements.
Continueing a for loop after a record save
So I am trying to print a packing slip qty box label for each line on a Item FulFilment. I have a working button that calls the client script but it always exits the 2nd for loop after one pass. below is a snippet of the code.
for(var i = 0; i<lineCounts; i++)
{
if(i == 0)
{
var message3 = "Opening Multiple Label pdf windows. Please click ok and wait for confirmation message.";
alert(message3)
}
var currentItem = recIf.getSublistValue({
sublistId: 'item',
fieldId: 'item',
line : i
});
var recItem = r.load({
type: r.Type.ASSEMBLY_ITEM,
id: currentItem,
isDynamic:true
});
var customerPartSearch = s.load({