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!
Proper Freemarker Syntax To Evaluate a Custom Form Field Checkbox from within the PDF Template
Here is some test code from a PDF template, being used to evaluate a custody checkbox field added to a Sales Order form in the main header area.
This throws an error when saving the template, saying the custbody field is empty. Can you help with the correct syntax?
<CODE>
<#if record.custbody_isproformainvoice>
<tr><td>Yes</td></tr>
<#else><tr><td>No</td></tr>
</#if>
</CODE>
Very much appreciated.