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!
Basic Return Name from ID
Hi
I need some help with pulling the country name instead of the country ID. (Item Record)
Here is a snippet of how I hard coded it....
How do I do a search with the ID and return the Name of the Country?
var Country = nlapiGetFieldValue('custitemcountry');
switch (Country) {
case "14":
Country = "Cambodia";
break;
case "17":
Country = "Dominican Republic";
break;
....
I am new to javascript and having fun with it.
0