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
Transaction Currency Symbol Search Column Internal ID
We have an issue where an errant single quote appears in the Discount total field, only when we Print in Customer's Locale.
I've tried these combinations:
[CODE]
${record.discounttotal} yields -105,50'€ (the original problem)
${record.discounttotal?string?replace("/'", " ")} yields -105,5 (a proposed workaround)
${record.discounttotal?string["000.00"]} yields -105,50 (a proposed workaround)
${record.currencysymbol} yields EUR (hoping to get €)
${record.currencyname} yields Euro (hoping to get €)
${record.currency} yields Euro (hoping to get €)
[/CODE]
Of course I could add if/then/else logic in the template, or in a custom transaction body field,
but is there a sales order or transaction level search column internal ID I can use at this level to get the "€" symbol dynamically?
I've tried these combinations:
[CODE]
${record.discounttotal} yields -105,50'€ (the original problem)
${record.discounttotal?string?replace("/'", " ")} yields -105,5 (a proposed workaround)
${record.discounttotal?string["000.00"]} yields -105,50 (a proposed workaround)
${record.currencysymbol} yields EUR (hoping to get €)
${record.currencyname} yields Euro (hoping to get €)
${record.currency} yields Euro (hoping to get €)
[/CODE]
Of course I could add if/then/else logic in the template, or in a custom transaction body field,
but is there a sales order or transaction level search column internal ID I can use at this level to get the "€" symbol dynamically?
0