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.
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Keep an eye out for upcoming NetSuite events, including meetups, workshops, and webinars. These sessions are a great way to connect with peers, learn from experts, and stay current on the latest NetSuite updates and best practices. Registration links are provided in each event.
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