This discussion has been locked. The information referenced herein may be inaccurate due to age, software updates, or external references.
You can no longer post new replies to this discussion. If you have a similar question you can start a new discussion in this forum.

SWQL Details Page Link for calculated fields in Custom Table does not work

When using a Custom Table on a view, the general way to use the Details Page Link on a field in the table is to include the field and the DetailsUrl field in the SWQL query like this:

SELECT

NodeName AS [Node],

DetailsUrl AS [Node|DetailsUrl]

FROM

Orion.Nodes

WHERE

NodeID = ${NodeID}

This allows for the addition of the Details Page Link display setting for the field on the Table Layout.

DetailsPageLink.PNG

However the use of a calculated field does not allow this to occur.

SELECT

Caption AS [Vol],

TOSTRING(ROUND(b.VolumePercentUsed,0)) + '%' AS [Usage],

DetailsUrl AS [Usage|DetailsUrl]

FROM

Orion.Volumes

Where

NodeID = ${NodeID}

DetailsPageLinkError.PNG

I have tried this using CASE statements as well, and no dice.

This seems like a bug to me.

Comments?