<@UN3JFQH17> looks like your concat operators arou...
# suiteanalytics
d
@Aria Ghahari looks like your concat operators around
{item.internalid}
and
{item}
were mistakenly encoded (to "%7C%7C") Also the html attribute values need to be wrapped in quote marks (i.e.
target="_blank"
). That should be it
So the result would be:
'<a target="_blank" href="<https://accountid-sb1.app.netsuite.com/app/common/search/searchresults.nl?searchtype=Transaction&Transaction_ITEMtype=ANYOF&Transaction_ITEM='%7C%7C{item.internalid}%7C%7C'&detail=Transaction_ITEM&detailname='%7C%7C{item}%7C%7C'>">'||TO_CHAR(COUNT({internalid},)'999')||'</a>'
a
Hi David. The encoding is actually for the pipe symbol. It happened when I pasted the link here otherwise, it works. So if I reove the to_char and Count and just put a static value, the link works.