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!
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