Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用公式在 NetSuite 中使用“false”一词填充字段,但目前当我使用它时,我什么也没有出现。如果我将其稍微修改为“null”或“blank”或将其保留为空格,则会返回错误。
我正在使用的代码是
CASE WHEN {custitem_upc_number} = 'null' THEN 'FALSE' END
尝试
CASE WHEN {custitem_upc_number} is NULL THEN 'FALSE' END