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.
Item Number on PDF Layout when SHOW DISPLAY NAME WITH ITEM CODES is checked
Hi all
Just a tip for anyone as it may help you.
Scenario:
Show Display Name with Item Codes is checked under General Preferences.
example inventory item:
ItemNumber: "VB234234234"
Display Name: "Visual Basic Hardback Book MS Press"
In an Item Dropdown List the Item appears as "VB234234234 Visual Basic Hardback Book MS Press"
On the PDF Layout for the Item Column, the Customer does not want the Display Name appearing, just the Number and the Description.
Solution:
${item.item.itemid}<br />${item.description}
This gets the Item Number directly from the Item's ItemID field, we then add a line break, and print the Description.
0