I have a dashboard structure. I enabled the "Parent-link" column which works fine to print out initiatives. In the structure is shows the Parent-link
"Foobar-13875 - Initiative Name FOO"
Is there a way to have this structure parent-link for the initiative just show
"Initiative Name FOO" ?
Trying to do this to conserve table space on the screen.
Not an answer, but a similar question so I'm posting it instead :D Hope that's allowed!
I'm on cloud, and I have a list of epics in my structure.
we have configured 'initiatives' called E2E-epics which can parent an epic through a Parent Link.
I can successfully retrieve the parentlink in a column formula, successfully printing the summary of the parent.
However, just typing 'parentlink' in my formula does not seem to retrieve any object, as I am not able to 'search' on parentlink.xxx or anything.
What I'm interested in for my goal, is to show the implemented by linked issue of the parentlink of an epic. But if I cannot seem to locate the parentlink object, it seems an impossible task. Am I correct?
NB: the level above epic is not shown in the Structure.
@Marijn Plat to avoid creating potentially confusing references and suggesting solutions that might not work on Cloud, please reach out to us directly through our support portal to discuss your use-case in more details.
Best regards,
Stepan Kholodov
Tempo
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Is this a way to access (in formula) any properties of any Jira Issue by Key?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Brent,
If you are talking about Structure for Jira columns, then you can use the Formula column with a formula PARENT{summary} to conserve space.
Regards,
Egor Tasa
ALM Works
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi
That makes sense but I had trouble.
I hit the "+" on the column header to add the new field formula.
For the variables selection I tried many different options from the list. (summary, parent-link, parent, ...).
I tried this same formula for PARENT{description} or summary, ... and several other formulas but nothing shows up in that field.
The Parent-link field comes up fine but the parent summary sitting next to it is blank.
The syntax passes.
Thanks for any assistance.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Brent,
This is strange, and we'll probably best troubleshoot it through support channel. Can you write to support@almworks.com so that we can request various logs and troubleshooting actions?
Regards,
Egor
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am going to post the resolution here so that community know the outcome. Parents of the issues were not present in the structure. There is an ambiguity: Structure understands parent as an issue that is present in a structure, while linked issues may have parents outside the structure and Parent Link field is showing them. The solution to the original problem was to parse Parent Link using a formula to show only the description.
Regards,
Egor
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
" The solution to the original problem was to parse Parent Link using a formula to show only the description." - how? example?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Eugene Nechaev ,
Welcome to the Community! I could not find the specific resolution to this request.
However, you should be able to get to what you need using the Issuelinks item property reference and the FILTER array function.
Something like:
issuelinks.FILTER(
$.type.outward = "yourissuelinkdirection"
).destination.description
Note that this is an onprem solution, it will not work on a Cloud hosted instance yet. Please let me know if this helps.
Best,
David
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @David Niro thx for the answer. Could you please add example to
"yourissuelinkdirection"
is this Issue Key?
And I want to double check, Parent Link (I think) not the same as linked items.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I was the original poster of this question/issue above. What I described below is how this issue was resolved for me.
Firstly, is the issue was in the same view as the Epic, this would not be a problem and the above screenshot posted in 2020 would have worked.
The issue for me was that in the Structure gadget, the Epic parentlink was not in the same view as the Jira issue list of children. I did a customized formula script.
Make the "Options" - General, then edit the script.
if (parentlink,substring(parentlink,search("<span>",parentlink)+5,search("</span>",parentlink)-1), ("N/A"))
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.