Expand my Community achievements bar.

SOLVED

Add Link to Issue in Custom Field Value for Issue Report

Avatar

Level 2

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? 

Topics

Topics help categorize Community content and increase your ability to discover relevant content.

1 Accepted Solution

Avatar

Correct answer by
Level 4

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. 

View solution in original post

1 Reply

Avatar

Correct answer by
Level 4

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.