The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
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.
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"""
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello everyone, Hope everyone is safe! A few months ago we posted an article sharing all the new articles and documentation that we, the AMER Jira Service Management team created. As mentioned ...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.