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.
Merging PDFs in a script
Can anyone think (or let me know if it's impossible) how to do the following:
I run a script each day that builds a CSV out of our orders to be shipped and sends it to our shipping company. I also manually print out a PDF of the sales orders and send that to them by email. I would like to get the script to also print the PDFs and send them off.
I am able to print each order with:
nlapiPrintRecord('TRANSACTION', searchresult.getId() ,'PDF', null);
Now what I need to do is to merge the PDFs (either appending them to each other as I go along or merging them at the end) before sending them. Otherwise i'd have to send lots of emails with a single PDF or one email with lots of different PDF attachments. To make it easier for the shipping guys, it needs to be a single PDF attachment with all the sales orders.