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.
Update: Narrative Insights has been restored and is now available.
Narrative Insights is Temporarily Unavailable due to an Infrastructure Issue. Learn how This Impacts Your Account and What to Expect While the Feature is Disabled.
Narrative Insights is Temporarily Unavailable due to an Infrastructure Issue. Learn how This Impacts Your Account and What to Expect While the Feature is Disabled.
how to attach several invoice records into one email
the internal id for the records I wanna attach is invoice, but I may have to attach several invoice into one email. how could i do that? can someone show me an example?
var records = new Array();
var record1 = new Object();
record1['invoice'] = id1;
var record2 = new Object();
record2['invoice'] = id2;
records[0] = record1;
records[1] = record2;
and then by using records as the parameter?
could this work?
0