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.
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Please note that on Saturday, April 11, 2026, at 8:00 PM Pacific time, our Case Management System will undergo a scheduled maintenance for approximately 30 minutes. During this time, case creation via SuiteAnswers will be unavailable and inbound calls will be routed to Customer Service.
Sales Order to Item Fulfillment using nlapiTransformRecord
hey guys.
I'm a bit lost here and I think this may be a defect.
From the Sales Order UI, you can click on Fulfill order and essentially pick and choose which items you wish to mark as shipped or packed or what ever.
When i try to do this Scheduled Script, It errors out with Unexpected here.
for (var itm=1; itm <= itemCount; itm++) { if (arFfitems.contains(itemff.getLineItemValue('item','item',itm))) { itemff.setLineItemValue('item','itemreceive',itm,'T'); } else { itemff.setLineItemValue('item','itemreceive',itm,'F'); } } If i comment out above line, which defaults to fulfilling ALL item on the list.
0