Discussions
Read on for the latest updates including:
• Agenda Builder launch
• SuiteWorld On Air registration
• New NetSuite Prompt Studio Contest
• And more!
Check out this thread to learn more!
Don’t miss your chance to meet our SuiteGurus—NetSuite Support professionals and subject matter experts with extensive experience in select product areas, including OneWorld, Advanced & Basic Accounting, Supply Chain Management, Receivables & Payables, CRM, Account Administration, and the SuiteCloud Platform. Full Conference attendees can prebook exclusive 30-minute one-on-one sessions for your product questions.
Spots are limited! Register through your Agenda Builder and find SuiteGuru under Agenda Enhancements.
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.