My Stuff
Please note that on Friday, March 20, 2026, at 8:00 PM Pacific time, our Case Management System will undergo a scheduled maintenance for approximately 4 hours. During this time, case creation via SuiteAnswers will be unavailable and inbound calls will be routed to Customer Service.
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…