Discussions
Join us for complimentary one-day events around the world and step into a future fueled by AI and limitless potential. Explore new breakthroughs, sharpen your skills, and connect with experts who are shaping what’s next. Experience bold keynotes, interactive learning, and connections that span the global NetSuite community. Discover what's next at SuiteConnect Tour 2026.
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