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.
Intelligent Payment Automation, powered by BILL (aka Bill.com), lets you automate payments, manage vendor details, and bank account information within NetSuite.
The SuiteApp is available to organizations based in the U.S. with a valid U.S. address, or to global customers (except Canada, China, and Japan) with U.S. business subsidiaries. It only supports payments to vendors operating in the United States.
For more information, visit this thread.
change Addressee/Attention in Addressbook
Hi
Hope someone could help me with this netsuite script in
Customer User Event :
I try to change the value in Addressee or Attention field in Addressbook
using the following code :
METHOD 1:
var rec = nlapiGetNewRecord();
var customerId = rec.getId();
var custo=nlapiLoadRecord('customer',customerId);
custo.selectNewLineItem('addressbook');
custo.setCurrentLineItemValue('addressbook','addressee','My addressee Name');
custo.commitLineItem('addressbook');
nlapiLogExecution('debug', 'modify addressee', ' id::' + customerId );
METHOD 2:
custo.SelectLineItem('addressbook',1);
nlapiSetCurrentLineItemValue('addressbook','addressee', 'Bill Contact');
nlapiCommitLineItem('addressbook');
nlapiLogExecution('debug', 'Change addressee in Billing', ' id::' + customerId );
METHOD 3:
nlapiSubmitField('customer',customerId,'billaddressee', 'Biller Name');
I have execute all methods above and have no error, Look like it saves the value to Sandbox. But when I review the address record, the value does not change at all. Still exactly the same as before.