Discussions
Stay up-to-date with the latest news from NetSuite. You’ll be in the know about how to connect with peers and take your business to new heights at our virtual, in-person, on demand events, and much more.
Now is the time to ask your NetSuite-savvy friends and colleagues to join the NetSuite Support Community! Refer now! Click here to watch and learn more!
Stay in the Know
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
Please note that on Friday, March 20, 2026, at 8:00 PM Pacific time, our Case Management System will undergo a scheduled maintenance for approximately 4 hours. During this time, case creation via SuiteAnswers will be unavailable and inbound calls will be routed to Customer Service.
Advanced PDF/HTML Template - error during validation, but works fine with record
Hi everyone!
I hope you are doing great!
I'm working on an Advanced PDF/HTML Template and need to create a mask for Brazilian info called CNPJ.
The raw data is XXXXXXXXXXXXXX, and I have to format it as XX.XXX.XXX/XXXX-XX.
Then, I used this code to format it:
<#assign unformattedCNPJ = record.entity.custentity_enl_cnpjcpf> <#function formatCNPJ unformattedCNPJ> <#return unformattedCNPJ?substring(0,2) + "." + unformattedCNPJ?substring(2,5) + "." + unformattedCNPJ?substring(5,8) + "/" + unformattedCNPJ?substring(8,12) + "-" + unformattedCNPJ?substring(12,14)> </#function> <#assign formattedCNPJ = formatCNPJ(unformattedCNPJ)>
Then, the validation returns this error:
Line 151 = <#return unformattedCNPJ?substring(0,2) + "." + unformattedCNPJ?substring(2,5) + "." + unformattedCNPJ?substring(5,8) + "/" + unformattedCNPJ?substring(8,12) + "-" + unformattedCNPJ?substring(12,14)>
Error on line 151, column 17 in the template.
0