Hello Experts,
I am using an HTML web resource to display a link in Dynamics 365 Dashboard so that when user clicks on it will take to a Tableau Report. Let's say the link to display in the Dashboard is "My Sample Report". Here is part of the HTML:
<tr>
<td>
<a style='color: blue;' onclick='openLinkInWindow('https://tableauURL');" href="#">My Sample Report </a>
</td>
</tr>
Since the Tableau URL is embedded in the HTML code, it cannot be managed by a user. So I am planning to create an entity to store Tableau URLs, therefore when there is any updates in the Tableau URL, Dynamics user can update the new URL in the entity record.
My problem is how do I get the field value (URL value from the entity) and pass in to the HTML file. Any suggestion?
Example:

Thank you!