I'm trying to use a formula to get a field populated with the word "false" in NetSuite, but currently when I use this I get nothing showing up. If I modify it slightly to say "null" or "blank" or leave it as just a space, it returns an error.
The code I'm using is
CASE WHEN {custitem_upc_number} = 'null' THEN 'FALSE' END
The Oracle NVL() function allows you to replace null with a more meaningful alternative in the results of a query.
Null values are useful when a field has been assigned a default value that you do not wish to propagate across all of the records that you are importing. For example, if you are a sales representative and enter a lead record in the UI, the Sales Rep field automatically defaults to be you.
Try
CASE WHEN {custitem_upc_number} is NULL THEN 'FALSE' END
Also, for NetSuite Null check related formulas - give NVL and NVL2 a try
Syntax :
NVL({expression1}, {expression2})
NVL2({expression1}, {expression2}, {expression3})
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With