How to use the value of a field to put in another field?

Geoffrey Gobert April 3, 2014

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

3 answers

1 accepted

0 votes
Answer accepted
Radek Kantor
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
April 27, 2014

- 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

0 votes
Geoffrey Gobert April 27, 2014

Hello,

And without plugins, it's possible ?

I'm not developper :-)

Thanks a lot !

0 votes
Radek Kantor
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
April 3, 2014

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);

Suggest an answer

Log in or Sign up to answer