Anyone have any tips for how to find fields so you...
# beginners
b
Anyone have any tips for how to find fields so you can use them in saved searches? I'm having a heck of a time trying to find things in netsuite.
s
There is a schema browser that you can use, for native fields
There are different Tabs which you can use as well
b
Sweet! It's tips like that I'm looking for.
👍 1
s
just a cautious/ friendly warning, sometimes NetSuite calls it different name on the UI vs on the saved search, also if you renamed the record and transactions it will display new names in the saved search
c
If you are a Chrome User, this extension is pretty handy: Show Field ID extension Basically, you hover over a field and then it tells you its name, e.g. tranid for Transaction ID. You can then use the Formula function in NS Saved Searches to display the field. For example, {customer.category} will display the Customer Category for a search return, even in a transaction search. And, you can do some nice logic on it for the display using a Formula : CASE WHEN {customer.category} is NULL THEN '-Unassigned-' ELSE {customer.category} END
❤️ 2