내 커뮤니티 업적 표시줄을 확대합니다.

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.
해결됨

how to change the project document link to task level document link in a workfront task level report?

Avatar

Level 2

How to change the project document link to task level document link in a Workfront task level report?

 

Instead of providing project document URL in user's dashboard, need to provide task document URL so that user can update relevant task document .

 

1 채택된 해결책 개

Avatar

정확한 답변 작성자:
Community Advisor

OK this is API 101. 

  • "DE:" means "data extension" and is a prefix for custom fields. 
  • on a task report the ID of the task is {ID}
  • To link to the task's documents use 
    valueexpression=CONCAT("https://domain.my.workfront.com/workfront/task/",{ID},"/documents")​

원본 게시물의 솔루션 보기

5 답변 개

Avatar

Community Advisor

Can you provide more context? 

What field/column are you using? 
Which link? 

 

Note that "documents" is a collection; there is no single "task document" 

Avatar

Level 2

This is the URL used to pull task document in the report, however this URL isn't working.Need to know how can we fetch document attached on a task on task level report?

 

valueexpression=CONCAT("https://domain.my.workfront.com/workfront/task/",{taskID},"documents")
valueformat=HTML
displayname=Task Documents
shortview=true

Avatar

Level 2

This is the error getting displayed.

ApaliNa1_0-1742222555921.png

 

Avatar

Level 2

How to include the taskID dynamically on the URL so that the task level documents are fetched on report?

https://domain.my.workfront.com/workfront/task/{DE:taskID}/documents

Avatar

정확한 답변 작성자:
Community Advisor

OK this is API 101. 

  • "DE:" means "data extension" and is a prefix for custom fields. 
  • on a task report the ID of the task is {ID}
  • To link to the task's documents use 
    valueexpression=CONCAT("https://domain.my.workfront.com/workfront/task/",{ID},"/documents")​