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.
beforeLoad and Web Store
The business goal is to dynamically display "FREE SHIPPING" if the online price of an item is greater than x.
I have created a test script for beforeLoad on the item. The beforeLoad is executing as I see the log.
The code:
var vShipping = "/site/templates/ct-itemtemplate-freeshippin.jpg";
nlapiSetFieldValue('custitem_ship_cost', vShipping);
nlapiLogExecution("Debug", "vShipping v1.0",
"vShipping="
+vShipping
);
When I view this in the UI, it works and custitem_ship_cost=/site/templates/ct-itemtemplate-freeshippin.jpg
When I view this in the web store, it does not work
custitem_ship_cost='' (it does will not display a value).
Would anyone know if it is possible to use a beforeLoad and expect the results to display on a item drill down?