Expand my Community achievements bar.

Do you have questions about the migration to Adobe Business Platform? Come join our upcoming coffee break and ask away!
SOLVED

Is there a way to make tasks automatically open in a NEW TAB from a TASK Report?

Avatar

Level 4

Hopefully, this is an easy one.

 

We have a task report that users regularly use to get the information they need. This report relies on PROMPTS so that it can be used by all. Unfortunately, if the user clicks into the task instead of opening the task in a new tab they need to reapply the multiple prompts which makes for a poor user experience. Is there a way to modify the text mode of the Task column so that the task is opened in a new tab by default?

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

Hi Matt, 

we do this in our instance. It requires 2 steps I believe:

1. custom calculated field on task level with formula: 

 

CONCAT("https://[yourdomain].my.workfront.com/task/",{ID},"/updates")

 

2. Field in a report with following text mode:

 

displayname=[Column name]
link.url=customDataLabelsAsString([Custom field name])
namevalue=[Custom field name]
textmode=true
valueexpression=IF(ISBLANK({DE:[Custom field name]}),"","Updates")
valueformat=HTML

 

This will give you a hyperlinked Updates

 

Hope this helps

View solution in original post

2 Replies

Avatar

Correct answer by
Community Advisor

Hi Matt, 

we do this in our instance. It requires 2 steps I believe:

1. custom calculated field on task level with formula: 

 

CONCAT("https://[yourdomain].my.workfront.com/task/",{ID},"/updates")

 

2. Field in a report with following text mode:

 

displayname=[Column name]
link.url=customDataLabelsAsString([Custom field name])
namevalue=[Custom field name]
textmode=true
valueexpression=IF(ISBLANK({DE:[Custom field name]}),"","Updates")
valueformat=HTML

 

This will give you a hyperlinked Updates

 

Hope this helps

Avatar

Level 4

Thanks Rafal. This is a great solution. I am hoping to find a something that does not require a custom task field but this is my #1 backup. Thank you!