Post-Function Complete Fields From Project Roles

Chas Berndt August 18, 2014

I'm trying to fill in certain fields (like Product Manager, Dev lead, QA lead, etc.) when an issue is created. These values would probably be derived from project roles. How can I do this?

1 answer

1 accepted

1 vote
Answer accepted
Alexey_Rjeutski__Polontech_
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.
August 18, 2014

As I know there is no exact solution for that issue (+ you should define what to do if there is more than one user inside project role), so the easiest way is to implement the logic as a postfunction using script runner. see https://jamieechlin.atlassian.net/wiki/display/GRV/Post+Functions for details.

Chas Berndt August 18, 2014

Thanks for the response. We have this installed already and this would probably be the best way forward.

Handling multiple people in a role is a good reason to script it so we can handle exceptions with ease.

To be specific, do you know how I can (1) change in custom fields and (2) access the project Roles via script.

Alexey_Rjeutski__Polontech_
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.
August 18, 2014

1. If you are doing that in postfunction - something like

String customFieldName = "customfield_11112";

CustomField cf = customFieldManager.getCustomFieldObject(customFieldName);

issue.setCustomFieldValue(cf,value);

2. refer to

https://answers.atlassian.com/questions/60150/how-to-get-project-role-object-using-api-method-in-behaviours-plugin

and

https://docs.atlassian.com/jira/latest/com/atlassian/jira/security/roles/ProjectRoleManager.html

Chas Berndt August 19, 2014

Alexey,

You've given me the right answer so I've marked the question as answered so you can have your karma (whats the Reddit to Atlassian karma conversion ratio??) but I had two more questions.

How would I access the component lead and utilize this information in Script Runner?

Is there documentation on how to access this data?

Alexey_Rjeutski__Polontech_
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.
August 20, 2014

Suggest an answer

Log in or Sign up to answer