Missed Team ’24? Catch up on announcements here.

×
Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

subtask + Scripted field

Sarathi Chatterjee August 31, 2017

When using filters I can list the sub-task keys comma seperated.

What I want to be able to do is list its Summary or Description, probably comma or pipe seperated just as the issue keys. 

I am trying to use Custom Fields for this issue.subTask Objects...

But cant quite do it..

Any suggestions .. ?

Thanks,

Sar 

 

1 answer

1 accepted

Suggest an answer

Log in or Sign up to answer
2 votes
Answer accepted
Joshua Yamdogo @ 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.
August 31, 2017

You could create a scripted field with a script like this:

def summaryList = []
issue.getSubTaskObjects().each { subtask ->
summaryList.add(subtask.summary)
}
return summaryList.join(', ')

It will get all of the sub-task objects of an issue, get the summary from each, and then add that summary to a list. You can then return the list and use the .join() method to display the list separated by commas.

Screen Shot 2017-08-31 at 12.11.25 PM.png

Sarathi Chatterjee September 1, 2017

Works like a charm.

Thank you Joshua appreaciate your quick response.

Joshua Yamdogo @ 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.
September 1, 2017

Hi Sarathi,

Glad to hear that it worked. If you wouldn't mind, please choose my answer as the best answer so that others in the community can find it easier.

Manu Sukumaran Panicker October 11, 2017

Hi Joshua,

Can you help into below given question.

I am trying to connect SQL server database through groovy script. The script I am trying in Script runner plugin "Script Console". 

Every time I'm getting null value error its actually returns nothing we can say.

Following is the code I'm trying to run in script console.

 

import groovy.sql.Sql
import java.sql.Driver

def driver = Class.forName('com.microsoft.sqlserver.jdbc.SQLServerDriver').newInstance() as Driver

def props = new Properties()
props.setProperty("user", "jiratesting")
props.setProperty("password", "ricciricci")

def conn = driver.connect("jdbc:sqlserver://1W8N542;databaseName=jira", props)
def sql = new Sql(conn)

try {
sql.eachRow("select count(*) from pro") {
return (it)
}
} finally {
sql.close()
conn.close()
}

 

Please suggest if anyone knows the answer.

Thank You.

TAGS
AUG Leaders

Atlassian Community Events