Note
We've packed up and moved from Confluence to Discourse to bring you a better, more interactive space. Out of courtesy we didn't migrate your user account so - you will have to signup again
The Exalate team will be on holiday for the coming days - returning Jan 4
Enjoy & stay safe
Hello,
We are currently trying to automatically calculate a Field called "RPN". This field is calculated like this (occurence * severity).
This usecase is easy to do, if you calculate this field across 2 different project. Our usecase would be to connect an Issue with itself (localproject connected with localproject). Means we don´t want to create a new Issue in the project, we want to establish a connection from issue ABC-12 to ABC-12.
That way our Outgoing sync could be:
replica.customFields."occurence" = issue.customFields."occurence"
replica.customFields."severity" = issue.customFields."severity"
And our Incomming sync could be:
issue.customFields."RPN".value = (replica.customFields."occurence".value * replica.customFields."severity".value)
Right now exalate always wants to create a new issue, it seems it is not possible to connect an issue to itself. Did someone already do it?