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!
Scripting the UPS Package page on Item Fulfillments
Has anybody had luck using a client script to populate fields on the UPS package page? I can trigger the script using a field change function and lineInit function on the UPS form but I am not having luck setting fields. No errors - just nothing happens.
if (type=='packageups'){
var salesOrder = nlapiGetFieldValue('createdfrom');
var terms = nlapiLookupField('salesorder', salesOrder, 'terms');
if (terms == '15'){
nlapiSetFieldValue('usecodups', 'T');}
}