It's not the same without you
Join the community to find out what other Atlassian users are discussing, debating and creating.
Hi,
I want to add throw an email to a particular user when someone changes the custom field Business Priority(Customfield_11406). I can almost do it.
My problem is that I cant fetch the values of this custom field.
I want to display the old and new value of the Buisness priority Field. I read several posts but seems none works for me.
My condition is : changeItems.any {it.get('field')=='Business Priority'}
Email Template is:
Summary = $issue.summary
Description: ${issue.description}
The priority of $issue.issueType.name $issue.key has been changedto $issue.getCustomFieldValue("customfield_11406")
Old value :
Please review if necessary.
As soon as I add $issue.getCustomFieldValue("customfield_11406") , it throws an error saying
No such property: getCustomFieldValue for class: com.atlassian.jira.issue.IssueImpl
Hi Sakshi
Try to get the value of the custom field this way
<% def subTaskCustomField = com.atlassian.jira.component.ComponentAccessor.getCustomFieldManager().getCustomFieldObject("customfield_11406") def customFieldValue = issue.getCustomFieldValue(subTaskCustomField) %> Summary = $issue.summary Description: ${issue.description} The priority of $issue.issueType.name $issue.key has been changedto $customFieldValue
Please let me know if that helps
Kind regards
Yes Thanks Thanos. Its working. How can i get the previous value?\
Is there a way?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Try to use the 'originalIssue', is type of Issue and represents the issue object before changes have been applied, on the other hand the 'issue' represents the current issue.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanos, I tried but unfortunatley it is not working. I created another variable to capture the business priority of issue type original issue. My script is as below: <% def subTaskCustomField = com.atlassian.jira.component.ComponentAccessor.getCustomFieldManager().getCustomFieldObject("customfield_11406") def customFieldValue = issue.getCustomFieldValue(subTaskCustomField) %> <% def subTaskCustomField1 = com.atlassian.jira.component.ComponentAccessor.getCustomFieldManager().getCustomFieldObject("customfield_11406") def customFieldValue1 = originalIssue.getCustomFieldValue(subTaskCustomField1) %> Issue : $issue.key Summary : $issue.summary Description: ${issue.description} The priority of $issue.issueType.name $issue.key has been changed from '$customFieldValue1' to '$customFieldValue' by $currentUser. Please review if necessary. Regards Sakshi
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.
I have multiple projects that use variations of the same base workflow. The variations depend on the requirements of the project or issue type. The variations mostly come in the form of new statuses ...
Connect with like-minded Atlassian users at free events near you!
Find a groupConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no AUG chapters near you at the moment.
Start an AUGYou're one step closer to meeting fellow Atlassian users at your local meet up. Learn more about AUGs
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.