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!
Mass Update (Script) Badge Icon Refresh
Hello,
I have been fine tuning a Custom Mass Update to refresh the badge icons (provided with the QuickStart package) applied to products listed on our website. The Mass Update draws from a script:
function massUpdate(recType, recId) {
rec = nlapiLoadRecord(recType, recId);
nlapiSubmitRecord(rec);
}
I need to add a line after the record is loaded to mark a check box field as true, which should provide better results, but I am not certain on how to exactly word this line. The field's ID is custitem_wd_badges_refresh.
Thanks in advance for your assistance.