There are instances when a user is getting an error “Invalid PDF layout. Please contact Administrator” when printing Picking Ticket. A possible cause for this is that there is no Picking Ticket Template set as Preferred for printing. Navigate to Customization > Forms > Transaction Forms Check the Preferred checkbox for the Standard Picking Ticket Click SubmitNote: Setting the Standard Picking Ticket as… Continue reading Resolve Error: “Invalid PDF layout. Please contact Administrator” When Printing Picking Ticket
Category: Advanced PDF Templates
Advanced PDF Templates designs – PDF samples and xml codes
Sort Item Column by Quantity in Advanced PDF/HTML Templates
User wants to sort the line items of a transaction by quantity. To sort the line items by quantity use: <#list record.item?sort_by(“quantity”) as item> To sort by reverse order use: <#list record.item?sort_by(“quantity”)?reverse as item>
Display applied customer credits when printing sales orders.
Implement a workaround, that would store the sum of the amount on a custom field. Then, expose the custom field on the Advanced PDF. Create a saved search to generate the sum of the customer deposit Navigate to List > Search > Saved Searches > New Create the Saved Search with the following settings Under… Continue reading Display applied customer credits when printing sales orders.
Logo Header Blurry on Printed PDF Forms
The customer uploaded a logo but it appears blurry and pixelated on all forms. To correct this, the customer uploaded a higher resolution image, they uploaded a 72 dpi before and they replaced it with the same logo with 150 dpi. Make sure that your logo resolution is 150 dpi and higher. If not, upload… Continue reading Logo Header Blurry on Printed PDF Forms
Apply the transaction currency symbol on the Advanced Invoice PDF print-out depending on the set currency.
Navigate to Customizations > Forms > Advanced PDF/HTML Template Preferred Advanced PDF/HTML Template : Click Edit Upper Right Corner: Toggle Source Code Refer below: 4. Click Save
Print Shipping Labels with Thermal Printer
To set up your NetSuite account to print shipping labels in EPL or ZPL format: Set up your NetSuite account to print using either EPL or ZPL format. Printer types that can use this format include certain Zebra, Eltron, and Epson printers. ZPL format is available for FedEx, USPS, and UPS shipping accounts and offers… Continue reading Print Shipping Labels with Thermal Printer
Print multiple page copies on single print PDF
Solution To print multiple copies of page in PDF template use <pdfset> tag Example <pdfset> <body> .. ….. </body> </pdfset> <pdfset> <body> .. ….. </body> </pdfset> While clicking on print, this prints 2 copies of that same page. The contents written on the pdfset tag considers as one page.
Remove comma added along with last content in PDF Print
Suppose if want to display set of invoice numbers in PDF print as a comma separated values, then there will a comma added along with last invoice number. Refer following sample to remove that unwanted comma
Display Number without Rounding off in Advanced PDF Template
To Display a number without rounding into fixed length, set following number format in the template code
Adding currency symbol in advance PDF
Here I am adding the code for displaying currency symbols. value?string.currency Sample code Result $2.00