Discussions
It’s that time of the year again! As we embrace the holiday cheer, we want to share an important announcement regarding our holiday schedule. Our dedicated team of NetSuite Support Gurus will be taking a short break to recharge during the holidays, from December 24, 2024, to January 1, 2025. We’ll be back in full swing, ready to assist you on January 2nd. During the break, feel free to explore the wealth of NetSuite resources on our platform.
As we celebrate the season's joys, we are incredibly grateful for your ongoing support and engagement. Have a fantastic holiday break, and let's gear up for an incredible 2025!
Here are some examples to get your creative juices flowing.
"Did I pay vendor John Doe last month?"
"Take me to my largest sales order for this month."
"What invoices haven't been paid yet?"
NetSuite Admin Tips: Advanced PDF/HTML Template > Value has Quote
As Standard Behavior, in order for us to declare that the value is a string on the Advanced PDF/HTML Template, the syntax would be ${record.custbody == '1X1'}. String values are usually enclosed in single/double quotes and single/double quotes within the value will cause syntax errors.
Sometimes, there are values that has single/double quotes. Measurements can be a good example. Let's say that the value of the custom Body Field is 1" x 2", this means to say that the value is 1 inch by 2inch.If we use ${record.custbody == '1"X2"'} on the Advanced PDF/HTML Template code, this will confuse the code and will automatically give us an error. What we can do is to add a backslash(\) before the single/double quotes. So on the code we have, we may enter the syntax