Hello,
Is it possible to retrieve the value of a custom field and put in the summary field?
With a variable? for example : ${fullname} ?
I need to do this for Service Desk.
Thanks,
Geoffrey
- JIRA has some predefined postfunction "Update Issue Field" - maybe this cover your needs
- otherwise try find some existing plugin solution on https://marketplace.atlassian.com, eg: JIRA Suite Utilities.
- you can do this by script postfunction, but this required some coding
Hello,
And without plugins, it's possible ?
I'm not developper :-)
Thanks a lot !
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes it is possible, just simply use setSummary method on MutableIssue to set value and CustomFieldManager to access value from custom field. But summary accepts string values, so you must convert your custom field value to string, because manager returns object - depends on custom field type return values can be string, number, User class, list of objects etc.
String summary = "Some summary string"; ((MutableIssue)issue).setSummary(summary);
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.