I want to ensure that linked issues (From different Projects) are for the same client or not.
I have a common custom field in both issue tickets and it is cascading select list type custom field.
I am using the below JIRA expression, but it is working on the first value only. my custom field has two dropdown value.
issue.customfield_10026.value == linkedIssue.customfield_10026.value
Hi Lokesh,
You are comparing only the parent fields not the children.
To fix it you'd need to compare the whole field values including both parent and child so you need to use something like this:
issue.customfield_10026 == linkedIssue.customfield_10026
Hope it helps!
@Sayed Bares _ServiceRocket_ Thanks for the insight... I added the child value also in the expression and it worked.
issue.customfield_10026.value == linkedIssue.customfield_10026.value &&
issue.customfield_10026.child.value == linkedIssue.customfield_10026.child.value
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.