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
TIP: Change html page title on sales transactions
Hi, have you ever had 10 tabs with transactions open in firefox and clicking through them to find the one that you were working on?
Well, I did, then I added a custom transaction field and added it to my forms.... boom, instantly better page titles that displays [transactionnumber] - [customer]
Create a custom transaction field that has the type inserted HTML and set the standard value to below and check the formula checkbox.:
'<script> function init() { try { document.title = "' || {tranid} || ' - ' || {entity} || '"; } catch (e) { null; } } init(); </script>' 0