Discussions
Stay up-to-date with the latest news from NetSuite. You’ll be in the know about how to connect with peers and take your business to new heights at our virtual, in-person, on demand events, and much more.
Now is the time to ask your NetSuite-savvy friends and colleagues to join the NetSuite Support Community! Refer now! Click here to watch and learn more!
Stay in the Know
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
Echo form input
Hi
I am trying to feed lead data from our of CRM systems to Netsuite. These need to be trickled in as needed / scheduled.
We are using a form (Marketing --> Online Client Forms) to do this. A requirement (to ensure that meaningful communication has taken place) is to echo the input fields back when the form is posted. Notification email isn't suitable as a feedback mechanism in this case.
I'm tinkering around with some custom code on a simple form with 3 fields. It gets called when the form is submitted.
function saverecord()
{
document.write (nlapiGetFieldValue('firstname') + nlapiGetFieldValue('lastname') + nlapiGetFieldValue('companyname'));
0