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

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,552,956
Community Members
 
Community Events
184
Community Groups

subtask + Scripted field

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

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.
Aug 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

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.
Sep 01, 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.

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.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events