Suppose we have an Incident and Incident management team and change management team created a ticket for the same issue in their project. How I can compare both the tickets in order to check if both tickets have similar information. (Information in some common field which both the project boards have)
Hi @asingh
just for a better understanding - will the values in the field you are looking for be known before and somewhat "static" or do they differ from time to time?
For example, I seem to have understood you have a project for incident management and change management. Assuming further you have a custom field called "customer" which is available to both projects.
Now you want to query for issues where the customer is "johndoe Corp" - is this correct?
Having this value set in the custom field for customer in both projects you could query by:
customer = "johndoe Corp"
Or is your requirement to programmatically query for ANY value that is in at least one issue in change projects AND same time at least in one issue of problem management?
If so, are these values known and can be entered by you or is an automated approach needed?
Regards,
Daniel
Yes, that is the correct assumption. Like i have a custom field named Customer in both the projects. Now I want to ccompare both the project if thay have entered same name or different name. I know i can download report in Excel and can compare. But i want to do it through a automated script. This script will compare both the custom fields and will show me only those tickts which has different information in same type of custom field
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks for clarification, @asingh
I see nothing that would speak against doing so using a script :)
The approach will depend on if you are planning to execute a script from within Jira or from the outside.
From within Jira Apps that support scripting (like ScriptRunner) are something that is often used, from the "outside" you could familiarize with the REST API. The REST API access comes with no additional costs if this should be a relevant criteria.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@asingh If you have Jira Automation. You can create an automation to compare two tickets (you can compare multiple fields by using multiple loop) and you can edit a Custom field (your choice) and add comments if it passes the condition "All values are same" if true, "There is difference" if false.
While checking condition there should be some field which should be unique to fetch and compare two issues from two different projects.
Using project smart values - https://support.atlassian.com/jira-software-cloud/docs/smart-values-projects/
Jira Project Automation - https://www.atlassian.com/software/jira/guides/expand-jira/automation#creating-a-rule
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @asingh ,
Since there is not out-of-the-box functionality to compare two tickets, I would do the following:
Hope that helps! Let me know if you need anything more :)
Alex
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes possible!
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.