Expandir minha barra de realizações na Comunidade.

Don’t miss the Workfront AMA: System Smarts & Strategic Starts! Ask your questions about keeping Workfront running smoothly, planning enhancements, reporting, or adoption, and get practical insights from Adobe experts.

Mark Solution

Esta conversa foi bloqueada devido à inatividade. Crie uma nova publicação.

SOLUCIONADO

Portfolio "View" where columns show (1) Project ID, and associated (2) Task IDs and status and any (3) Issue IDs and status

Avatar

Level 3

Hi Community, 
How do I create a "View" in Portfolio that displays columns showing the (1) Project ID, and associated (2) Task IDs and status, and any (3) Issue IDs and status?

 

1 Solução aceita

Avatar

Resposta correta de
Community Advisor

Those would all be collections. On a Portfolio report, you can show Active projects with this code in a column:

 

displayname=Active Projects
listdelimiter=<div>
listmethod=nested(projects).lists
textmode=true
type=iterate
valueexpression=IF({status}="CUR", CONCAT("• ", {name}), "")
valueformat=HTML

 

You cannot show Tasks or issues from a Portfolio report because that would be a collection of a collection (tasks and issues are project collections). You could click into a project and see a collection of tasks and/or issues for that project though.

TIP: if this solved your problem, I invite you to consider marking it as a Correct Answer to help others who might also find it of use.

Ver solução na publicação original

1 Resposta

Avatar

Resposta correta de
Community Advisor

Those would all be collections. On a Portfolio report, you can show Active projects with this code in a column:

 

displayname=Active Projects
listdelimiter=<div>
listmethod=nested(projects).lists
textmode=true
type=iterate
valueexpression=IF({status}="CUR", CONCAT("• ", {name}), "")
valueformat=HTML

 

You cannot show Tasks or issues from a Portfolio report because that would be a collection of a collection (tasks and issues are project collections). You could click into a project and see a collection of tasks and/or issues for that project though.

TIP: if this solved your problem, I invite you to consider marking it as a Correct Answer to help others who might also find it of use.