Aaron McCausland
05/21/2026, 1:39 PMCeligo AI
05/21/2026, 1:39 PMAI generated answer (using internal Slack threads):The filename of invoices sent via the "Merge and Send" button when creating a Message in the NetSuite UI is determined by the system and it's not directly editable via the UI settings. However, there are workarounds to change the filename. One way to change the filename is by using a workflow action script as mentioned in SuiteAnswers 69220. This would involve creating a custom script that changes the filename based on your requirements. Another way is to use SuiteScript, specifically the N/render module. Here's a sample code snippet provided in one of the threads:
javascript
var customPdf = renderer.renderAsPdf();
customPdf.name = "Report Name.pdf";
This code snippet creates a custom PDF and sets its name. Please note that this requires scripting knowledge and might not be suitable for all use cases.
******
Disclaimer:
This response was generated by an artificial intelligence assistant based on previous conversations from multiple Slack channels, and may contain inaccuracies or mistakes.
******Celigo AI
05/21/2026, 1:39 PMSlack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.830627441
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.827270508
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.824035525
Celigo AI
05/21/2026, 1:39 PMDaniel Patton
05/21/2026, 1:41 PMAaron McCausland
05/21/2026, 1:43 PMDaniel Patton
05/21/2026, 1:44 PM