Hello, looking for assistance on an issue report.
We have a custom issue field SGWS | Short Product Name. Is there a text mode method where I can display the value of that field, but it's also a link to the issue?
Solved! Go to Solution.
Topics help categorize Community content and increase your ability to discover relevant content.
Views
Replies
Total Likes
Hi @BeckerD ,
You might have to create a calculated field on an existing (or new) custom form on the issue level. Let's say you call it "Issue Link".
Formula would be something like : CONCAT("https://experience.adobe.com/#/<yourcompanyname>/workfront/issue/",{ID})
Once this field is added to all your issues. Then add a column in your report and in text mode add the following code -
displayname=SGWS | Short Product Name
link.url=Issue Link
linkedname=html(Issue Link)
valueexpression=IF(ISBLANK({DE:Issue Link}),"",{DE:SGWS | Short Product Name})
valueformat=HTML
Hope this works.
Views
Replies
Total Likes
Hi @BeckerD ,
You might have to create a calculated field on an existing (or new) custom form on the issue level. Let's say you call it "Issue Link".
Formula would be something like : CONCAT("https://experience.adobe.com/#/<yourcompanyname>/workfront/issue/",{ID})
Once this field is added to all your issues. Then add a column in your report and in text mode add the following code -
displayname=SGWS | Short Product Name
link.url=Issue Link
linkedname=html(Issue Link)
valueexpression=IF(ISBLANK({DE:Issue Link}),"",{DE:SGWS | Short Product Name})
valueformat=HTML
Hope this works.
Views
Replies
Total Likes