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.
require.config vs define() for custom modules with dependencies
We've run into an issue where we have a custom module that has momentjs and are trying to use this custom module in another module. If we try to include this using require.config with a relative path to the custom module, it does not allow it (says it cannot find the module). If we take out the reference to momentjs so the define is something like define([], function({...}); then it'll work fine. However, if we keep momentjs as a dependency and do NOT use require.config and just use a relative path within the define array, it works just fine. My