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.
update field
hi,
I'm new on suitescript and try to create files for testing purpose, i want to craete a script to update purcahes description for a specific item (which have internal id = '2592')to be the exist description + some text (123 as example). so i upload .js file contains the code bellow:
function updateDescription()
{
if (nlapiGetFieldValue('internalid')=='2592')
{
var Desc = nlapiGetFieldValue('purchasedescription');
Desc = Desc + '123';
nlapiSetFieldValue('purchasedescription',Desc);
}
}
it retrieve the field value and change variable Desc but it didn't set the new value for purchase description, i tried to create client script (pageinit function) and another user event script (beforeload function); but no one set the new value