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.
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
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