Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Is there a way to show a jira field within another jira field

Joe Harmon
Contributor
September 25, 2019

In reporting I wanted to know if there was a way to show or call jira fields within other jira fields.  For example, having a field that shows the date, owner, description, etc within another field. This is helpful when doing list view reports.

2 answers

1 accepted

0 votes
Answer accepted
Andrew Laden
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
September 26, 2019

Scriptrunner, or Power Custom Fields

jira guy
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
September 26, 2019

You can achieve same thing in many ways inside JIRA. You just have to choose whatever works best for you. It might be price, your scripting knowledge, convenience or whatever

Joe Harmon
Contributor
September 27, 2019

Do you know if JMCF (jira misc custom fields) allows for this?  I do have that one.

David Fischer
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
September 27, 2019

I'm not sure what you mean by "show or call jira fields within other jira fields". Can you give a concrete example? 

You can certainly create calculated fields using JMCF that will show other fields, but I'm not sure I understand the "within" part...

Joe Harmon
Contributor
September 27, 2019

I was thinking a multi-line field that could represent a lot of fields for displaying in chart.  One common example is updated date.  We have a status field where we manually put in a weekly status.  It is a multi line field.  But we also have in that status the name of who the content owner and the date it was updated.  These are two items that I would like to bring in automatically at the top of the status.

David Fischer
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
September 27, 2019

I guess you could create a Calculated (scripted) Wiki Text custom field and build its value (using the formula) by concatenating the value of multiple fields. You could even include wiki markup to format the field value a little better. For example:

return """
*Last updated*: ${issue.get("updated").format("yyyy-MM-dd")}
*Assignee*: ${issue.get("assignee")?.displayName ?: "_unassigned_"}
*Description*:
${issue.getAsString("description")}
"""
Like Andrew Laden likes this
Joe Harmon
Contributor
September 27, 2019

thanks

1 vote
jira guy
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
September 25, 2019

You can use scripted fields from scriptunner or some other plugins. Not possible in out of box jira

Suggest an answer

Log in or Sign up to answer