Hi @hardikbendre ,Please use the below to convert comma separated value into an array:// dec stores the comma separated values
var dec = "service,now,community"
var colSplit = dec.split(",");
var arr=[];
for(i=0;i<colSplit.length;i++)
{
arr.push(...
Hi @VaniK , To make it visible in the Database View table, you need to pass the attribute along with the prefix of that column. I have created it and its working fine in both DB View and Report. If possible, please share the screenshot, so that I can...