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,557,835
Community Members
 
Community Events
184
Community Groups

set default / pre filled "Epic link" value on create issue using behavior

hii ,

can anyone please help me with this ,

i want to set default value for Epic Link . Thanks in advance 

image.png

2 answers

1 accepted

2 votes
Answer accepted
Jia Jie
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.
Feb 03, 2021

Hi @sgole

You can try to apply the sample script below in the Behaviour Initialiser:

import com.atlassian.jira.component.ComponentAccessor

// Get Epic Link field and it's value
def epic = getFieldByName("Epic Link")
def value = epic.getValue() as String


if(getActionName() == "Create" && value == null ){
//Set epic link
epic.setFormValue("RAIN-12")
}

I'm using Scriptrunner 6.18.0 and Jira 8.13.1.

Hope you found this useful!

hii @Jia Jie  Thanks for your help , in my case i was trying to set JIRA in setFormvalue ex. setFormvalue("JIRA") ,

instead of setFormvalue("EEHQAN-2") works :). 

image.png

Jia Jie
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.
Feb 04, 2021

Hi @sgole ,

Glad that it works now and I'm happy to help!

@Jia Jie , can you please help me to set  default "sprint" field also

Jia Jie
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.
Feb 04, 2021

Hi @sgole ,

It's similar to the sample script above. Try to get your sprint by its Id, then set it with sprint id.

//Get Sprint field by its id
def sprint = getFieldById("customfield_10101")

//Set the default sprint with sprint id
sprint.setFormValue(1) 

 You can refer to the community post here on getting the sprint id.

Like sgole likes this

@Jia Jie Thanks  it works . 

Like Jia Jie likes this

Hi @sgole ,

I found this resolved Atlassian Community discussion to be relevant to this case: Create a default Epic Link using Behavior . Do check it out if it suits your requirement.

I hope this helps.


Kind regards,
Irfan

@Irfan Mazuki  thanks for reply . i have already tried this but wont work for me .

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events