Hi Community.
i have Single line text custom Field(For Serial number) in "Project A" "issue type A" When ticket is creating user will enter Value to custom Field and creates ticket.
In "Project B" "issue type B" i have one multi line text custom Field Where user will enter Single or Multiple Serial number which is already created in "Project A"
Here My question is Whenever Serial number is entered in Project B issue type B ticket, Automatically it should link with Project A issue type A ticket. If User enter 3 Serial number in project B then All 3 tickets from Project A should auto link with Project B ticket.
Looks doable, If my assumptions are correct. However, you might end up having too many links.
Things to do:
Try creating a filter on Project A with the field value you want to filter.
Use the same filter in automation for the list on issues.
Monitor for the field value change, and set the Link using the outcome of the JQL match.
-Bibek
Thanks for the Reply. I'm new to this Jira and Automation Rule. So could you please provide the More Details or Automation Rule which can i use as reference.
Thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Prathap DL ,
Welcome to the Community
You can do that with Automation Rules,
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Oday Rafeh
Thanks for the Reply. I'm new to this Jira and Automation Rule. So could you please provide the More Details or Automation Rule which can i use as reference.
Thanks,
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Prathap DL ,
I will try to make it simple :
To automatically link issues based on serial numbers, follow these steps in Jira:
project = "Project A" AND issuetype = "issue type A" AND "Serial Number" ~ "{{field}}"
I hope this will help you if this doesn't help let me know and I will create screenshots for you on how to do it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Greetings,
Project-scope rules may create or clone issues in other projects, but cannot access them otherwise.
Rules which access (or update) issues in multiple projects must have global or multiple-project scope. Such rules are defined in the global automation area, not in the project settings. Your Jira site admin will need to configure such a rule.
Kind regards,
Bill
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I tried above steps which you given but I'm not able to use {{field}} in JQL. instead i tried Serial number field is not Empty.
Now all the tickets in project A which has serial numbers all linking to Project B single ticket.
I used below rule
I want Project B custom field value to match with Project A custom field value. then only it should link with each other.
Note: Project B custom field name and project A custom Field name is different.
And Project B field can have multiple Serial numbers in it. in that case all the tickets related project A should link with Single ticket in Project B
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Prathap DL Hi again
try to write you JQL like this :
project = "Project A" AND issuetype = "Issue Type A" AND "Serial Number" ~ "{{customfield_xxxxx}}"
this JQl should find issues in Project A that match the serial numbers entered in Project B.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
For you JQL this what you need to adjust to work with custom field smart value :
{{issue.customfield_xxxxx}}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.