megaphone
Update your Profile with your Support type to get your Support Type badge.
Nominate Your Peers for NetSuite Support Community's Choice of the Quarter! Submit your nomination today.
Expand your NetSuite knowledge by joining our Ask A Guru Live sessions. RSVP on this event now.
Don't miss out on our Question of the Week ! You only have until tomorrow, March 12, 2026, 2:00PM ET to comment your answers.

My Stuff

Community Articles: What Topic Should We Cover Next? Your idea could be our next feature—drop your suggestion now and spark the next big discussion!

Dan Abate Newbie

Comments

  • following your case when statement.. here's how it should be, given that your fields are correct.. CASE WHEN {quantityavailable} > 0 THEN 'In Stock' WHEN NVL({quantityavailable},0)<=0) AND ( NVL({quantityonorder},0)<=0) THEN 'Out of Stock' WHEN (NVL({quantityavailable},0)<=0) AND ({quantityonorder} > 0) THEN 'Pending…
  • Hello, I am trying to create a custom item field called "Stock Status" that assigns free-form text values based on inventory levels for that item. The logic for this field is clear in my head, however, I have very little experience (i.e. no) experience in scripting or creating formula fields using SQL expressions. I have…