The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

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

Custom Filed and JQL

Garden16_
May 23, 2022

I have  created  a custom field named  stories using script runner fields  which uses JQL to  query the stories with in  the Project.

Here is the Query

issuetype in ( "Story") AND project = "Prj A"

 

If I need to  use the same Custom Filed in another project project , how would I use it. I want the Stories field to display stories related to that particular project only.

I do not want to create sperate custom fields for stories  each project.

Kindly, Help with this. 

 

1 answer

1 accepted

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Answer accepted
PD Sheehan
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 Champions.
May 23, 2022

I'm assuming this is an "Issue picker" type of field you've created via the Scriptrunner fields.

Then you can use the "Configuration Script" portion of the Scripted Field configuration to tell what JQL to user.

Here is the documentation for this feature

This is what you want to add to your config

import com.atlassian.jira.issue.Issue

getJql = { Issue issue, String configuredJql ->
"""issuetype in ( "Story") AND project = $issue.projectObject.key"""
}
Garden16_
May 24, 2022

Thank you  so much ! It worked 

TAGS
AUG Leaders

Atlassian Community Events