Concept of list directive in Advanced PDF.

In Advanced PDF, the <#list> directive is used for iterating over a collection of items, such as a list or an array, in order to generate repetitive content within the PDF document. Here’s a brief explanation of the concept and usage of the <#list> directive in Advanced PDF: Syntax of the <#list> directive is given… Continue reading Concept of list directive in Advanced PDF.

Display SO Item Table in Customer Deposit PDF.

Currently, the customer deposit standard print doesn’t provide a direct connection to SO and print item table in Advanced PDF template. SOLUTION Create a UE script in customer deposit and create a custom hidden field to store the SO item data and fetch this data in advanced pdf template and print the table And on… Continue reading Display SO Item Table in Customer Deposit PDF.

Enabling the Advanced PDF/HTML Templates Feature

The Advanced PDF/HTML Templates feature must be enabled to use the Standard Journal Entry PDF/HTML Template for printing journal entries. To enable the Advanced PDF/HTML Templates feature: Go to Setup > Company > Setup Tasks > Enable Features. Click the SuiteCloud subtab. Under SuiteBuilder, check the Advanced PDF/HTML Templates box. If required, agree to the SuiteCloud Terms of Service, and… Continue reading Enabling the Advanced PDF/HTML Templates Feature

Add a circle in Advanced PDF/HTML Template

The border-radius is a CSS3 property and it is not available in CSS2. The Advanced PDF/HTML Templates only allow for CSS2 properties to be embedded at the moment, so any CSS3 property (including border-radius) will not be reflected in the printout. so use Corner Radius <div style=”width: 150px; height: 150 px; corner-radius: 80px; border: 1px… Continue reading Add a circle in Advanced PDF/HTML Template

Error in Printing statement when Multiple Currency enabled

If you are printing customer Statements using customized pdf templates. Then after enabling the Multiple currency, when you try to print the customer statement using the earlier customized pdf template, it will throw an error . If this feature is enabled in your account, a specialized template is available for printing statements for customers that… Continue reading Error in Printing statement when Multiple Currency enabled

Built-ins for strings used in advanced pdf/html template.

Built-ins for strings used to split the data into fields in advanced pdf/html template. keep_afterRemoves the part of the string that is not after the first occurrence of the given substring. For example:TEMPLATE${“abcdefgh”?keep_after(“de”)}will printOUTPUTfgh keep_after_lastSame as keep_after, but keeps the part after the last occurrence of the parameter, rather than after the first. Example:TEMPLATE${“foo.bar.txt”?keep_after_last(“.”)}will printOUTPUTtxt… Continue reading Built-ins for strings used in advanced pdf/html template.