Use NVL in JavaScript
var a;
if ( fieldname.isNull() )
{
a = '0';
}
else
{
a = fieldName.getString();
}
fieldName.nvl('1');Last updated
Was this helpful?
var a;
if ( fieldname.isNull() )
{
a = '0';
}
else
{
a = fieldName.getString();
}
fieldName.nvl('1');Last updated
Was this helpful?
Was this helpful?