Helper method used to concatenate values in a JavaScript Template Literal.
Last updated 1 year ago
This helper also uses
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;