milestone name for parent task | Community
Skip to main content
KristenS_WF
Level 7
April 3, 2023
Solved

milestone name for parent task

  • April 3, 2023
  • 1 reply
  • 1088 views

Is there a way to display, in a Task report, the milestone name for the task's parent task?

 

I've been playing around with Text Mode (and looking at the API Explorer) but can't seem to get my syntax right.

 

Thanks.

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by KristenS_WF

Ah... figured it out.  I saw that Parent > Milestone ID was an available field in the report, so I modified its Text Mode to the following:

 

displayname= linkedname=parent namekey=view.relatedcolumn namekeyargkey.0=parent namekeyargkey.1=milestone namekeyargkey.2=name querysort=parent:milestone:name textmode=true valuefield=parent:milestone:name valueformat=HTML

 

1 reply

skyehansen
Community Advisor and Adobe Champion
April 3, 2023

can you mention what you've tried? Looking at the API explorer it feels like parent:milestone:name should have worked? (i.e. look up task, and look in the reference tab to see how to reference the parent, and then click on the parent link and look in the reference tab how to reference the milestone, then click on the milestone link and look in the reference tab to see how to reference the name of the milestone. Then string everything together using colons or periods/parens, depending on what kind of text mode you are building)

KristenS_WF
KristenS_WFAuthorAccepted solution
Level 7
April 4, 2023

Ah... figured it out.  I saw that Parent > Milestone ID was an available field in the report, so I modified its Text Mode to the following:

 

displayname= linkedname=parent namekey=view.relatedcolumn namekeyargkey.0=parent namekeyargkey.1=milestone namekeyargkey.2=name querysort=parent:milestone:name textmode=true valuefield=parent:milestone:name valueformat=HTML

 

skyehansen
Community Advisor and Adobe Champion
April 4, 2023

great job! I'm curious about why your original text mode didn't work though. I literally trimmed my code down to two lines:

 

textmode=true valuefield=parent:milestone:name

 

and even that worked.