MY requirement is that i wanted to just pull the value of "Σ Remaining Estimate" to another scripted field created by me. This will be a Scripted field. I believe it can be possible. Please let me know if you want any other info.
Use the below script to a scripted field.
import com.atlassian.jira.component.ComponentAccessor import com.atlassian.jira.issue.Issue import com.atlassian.jira.issue.IssueImpl import com.atlassian.jira.issue.IssueManager import com.atlassian.jira.issue.CustomFieldManager import com.atlassian.jira.issue.fields.CustomField import com.atlassian.jira.issue.util.DefaultIssueChangeHolder import com.atlassian.jira.issue.ModifiedValue def Est = issue.getEstimate() List<IssueImpl> subTasks = issue.getSubTaskObjects() if (subTasks != null){ subTasks.each { subTask -> def EstVal = subTask.getEstimate() if(EstVal != null) { Est=Est+EstVal; } }} IssueManager issueManager = ComponentAccessor.getIssueManager() CustomFieldManager customFieldManager = ComponentAccessor.getCustomFieldManager() def tgtField = customFieldManager.getCustomFieldObjects(issue).find {it.name == "Customfield Name"} def changeHolder = new DefaultIssueChangeHolder(); tgtField.updateValue(null, issue, new ModifiedValue(issue.getCustomFieldValue(tgtField), Est.toString()),changeHolder);
Change the "Customfield Name" to the name of the target custom field.
Hi Mahesh,
Getting the below ERROR:
Error
No such property: issue for class: Script6
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Join the largest European gathering of the Atlassian Community and reimagine what’s possible when great teams and transformative technology come together. Plus, grab your Super Fan ticket now and save over €1,000 on your pass before prices rise on 3 June.
Register nowOnline 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.