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,555,443
Community Members
 
Community Events
184
Community Groups

Scriptrunner Behaviours - Using screen ID in Initialiser

Edited

I'd like to implement a pre-filled Description field for any project using a certain workflow, so I set up a Behaviour based on the Screen ID of the Create Issue screen for that workflow. However, it's not working. If I remove the screen ID check, it works as expected on all screens, but that's not what I want  :)

 

def desc = getFieldById("description")

 

def descDefaultValue = """blah""".replaceAll(/ /, '')

 

if (FieldScreen.getId() == 12903) {

     if (! underlyingIssue?.description) {

          desc.setFormValue(descDefaultValue)

     }

}

 

Apologies in advance if I missed something simple. Thanks for the feedback.

 

3 answers

1 accepted

0 votes
Answer accepted

Following up.. I didn't realize the screen ID was changing. Once I set up the code to detect and print screen ID during troubleshooting, I was able to get it working.

Hi @Veronica Kolstad ,

I am trying to add an auto comment when we close a ticket :

when we click on resolve button we have a screen called CHD Resolve Screen with resolutions and comment box, I am trying to add an auto comment on the comment box. I have tried the following script :

def desc = getFieldById("description")

def defaultValue = """Your issue is now resolved""".replaceAll(/ /, '')

if (getFieldScreen().name== "CHD resolve screen") {
if (! underlyingIssue?.description) {

desc.setFormValue(defaultValue)

}

}

 

but looks like I still do not get the message on the comment box, do you think I am doing something really wrong as I do not get any error message 

0 votes
Mark Markov
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 20, 2018

Hello @Veronica Kolstad

Your workflow associates with certaion issue types, so why not just add mapping to this issue types and remove this screen check?

Thanks for your quick feedback, Mark. We have about 30 groups using JIRA in our organization at this time, and about 80% of the groups use the same workflow for their Scrum teams. I am trying to simplify things for that 80%, since they're all writing user stories.

However, we use the same basic issue types (Story, Bug, Epic, Sub-task) across the organization to keep things simple. If we auto-fill by issue type, my understanding is this would not exclude the 20% of the organization that would not value the pre-filled description we are trying to implement in the Story type.

Using the screen name was suggested by @JamieA here, so I think it's possible and I'm just doing something wrong. I switched to using the screen ID when the screen name didn't work, so I'm hoping there's just something wrong with my syntax.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events