Hi,
I would like to create a Custom html link on a group summary page that would direct to a specific url for each group.
I was hoping to accomplish this by storing the relevant url information in a custom property and calling it as a variable.
<a href="https://servicenow.com/sys_sysparm_report_id=${snowrpt}">SNOW Report</a>
That did not work as any custom property variable that I try to pass is not resolved.
The only variables that I was able to pass through are ${Caption} and ${Description}. I can't store the url information in these fields so it is not a workable solution.
I also tried to retrieve the variable through a SQL statement but that would not work either. It just passes the sql syntax as the url.
<a href="https://servicenow.com/sys_sysparm_report_id=${SQL:{select snowrpt from ContainerCustomProperties where containerID=1:}}">SNOW Report</a>
Any suggestions?
Thanks!