Custom script post-function for holding the transition executed user full name

Ramaiah Pendli June 27, 2017

Hi, We have a workflow like below and a custom filed Addressed By. we need to copy the user id to Addressed by filed using post funtion "Custom script post-function" when ever the issue moved to CLOSED state. when ever the issue moved from 1. open to closed 2. Rejected to closed 3. Reopend to closed 4. validation to closed, the custom field - Addressed By value need to updated to trasition executed user full name.

 

Closed.JPG

Some one please help on the script. which is same like the copy the date from the post - https://community.atlassian.com/t5/JIRA-questions/Scripted-post-function-to-set-a-date-value-in-custom-field/qaq-p/368278  

 

 

 

 

1 answer

1 accepted

1 vote
Answer accepted
Aidan Derossett _Adaptavist_
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.
June 28, 2017

Hey Ramaiah,

To do this, you'll have to place a post-function on every one of the transitions that you specified above. In each custom post-function, you can get the current user and assign them to the "Addressed By" field using a script like:

import com.atlassian.jira.component.ComponentAccessor

def cfm = ComponentAccessor.getCustomFieldManager()
def jiraAuthContext = ComponentAccessor.getJiraAuthenticationContext()

def userCf = cfm.getCustomFieldObjectByName("Addressed By")
def currentUser = jiraAuthContext.getLoggedInUser()

issue.setCustomFieldValue(userCf, currentUser)

Additionally, you need to make note of where the post function is in the order of execution. Make sure you put this function just before the "Re-index an issue to keep indexes in sync with the database" step:

Screen Shot 2017-06-28 at 8.38.52 AM.png

Let me know if you need help with this or have any more questions! :)

Best,                                                                                                               Aidan

Suggest an answer

Log in or Sign up to answer