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 Inventory Part Purchase Price field {cost}
I have a script that updates a number of fields on Inventory Part records, but I am struggling to update the Purchase Price field succesfully.
Looking on the Record Browser it is listed as a 'currency2' field type (which is the same as the TransferPrice field).
My script is running these lines:
item.setValue({fieldId:'transferprice',value: purchasePrice});
item.setValue({fieldId:'cost',value: purchasePrice});
The Transfer Price field updates successfully, but the Purchase Price field does not. They are being populated with the same variable, so I cannot see why one updates and one doesn't.
In reading the help notes I see there is a peculiarity around the Purchase Price showing prices in the same currency as the Preferred Vendor field. Could this be why the field is not updating? Do I need to specify the currency in some way?