Helper method used to concatenate values in a JavaScript Template Literal.
This helper also uses IS NULL helper.
Helper method used to concatenate values in a JavaScript Template Literal. This is necessary to check if values are null or not. Oracle handles null values as empty strings in concatenations.
var concatValue = (arg) => IS_NULL(arg) ? "" : arg;
Last updated 4 years ago
Was this helpful?