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.
Setting a line item and doesnt work in IE 6.0
I have a custom form where I want to automatically add a line item to a transaction when the form loads. The strange thing is that the code below works in Firefox 1.5.0.7 but fails in 6.0.29 with an 'unknown exception'. I used the line item example in the documentation as a template.
function onFormInit()
{
nlapiSelectNewLineItem('item');
nlapiSetCurrentLineItemValue('item', 'custcol_processingfield', 'T');
nlapiSetCurrentLineItemText('item', 'item', 'Project Expense : Meeting-Speaker Expense');
nlapiSetCurrentLineItemValue('item', 'custcol_paramvalue', '150.00');
}
function doPostSourcing(type, fldname)
{
if(type == 'item' && fldname == 'item')
{
if(nlapiGetCurrentLineItemValue('item', 'custcol_processingfield') == 'T')
{
var rate = nlapiGetCurrentLineItemValue('item', 'custcol_paramvalue');
if(rate != null && rate != '')
{
nlapiSetCurrentLineItemValue('item', 'custcol_processingfield', 'F'); //turn the processing field off