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,642,299
Community Members
 
Community Events
196
Community Groups

Systemfield "Components" to Customfield(selectlist) "Product" sync values?

Edited

Hi Team,

 

 

Request----> Whenever components added in a project, the same component value should add in product(selectlist) section. Below script working as expected.

 

 

import com.atlassian.jira.component.ComponentAccessorimport com.atlassian.jira.event.bc.project.component.ProjectComponentCreatedEventimport com.atlassian.jira.event.bc.project.component.ProjectComponentUpdatedEvent
def SCHEME_ID = 16848L
def event = event as ProjectComponentCreatedEventdef event1 = event as ProjectComponentUpdatedEvent
def fieldConfig = ComponentAccessor.fieldConfigSchemeManager.getFieldConfigScheme(SCHEME_ID).oneAndOnlyConfig
def PROJECT_ID = 14301Lif (event.projectComponent.projectId == PROJECT_ID) {ComponentAccessor.optionsManager.createOption(fieldConfig,null,0L,event.projectComponent.name)}if (event1.projectComponent.projectId == PROJECT_ID) {ComponentAccessor.optionsManager.createOption(fieldConfig,null,0L,event1.projectComponent.name)}

 

 

Request2: We still need whenever component value updated in component section, the same value should update in product(selectlist) section. Please help me on this requirement to get this done

 

For example:

In components section there is a value "Test" the same value exist in customfield Product.

If we rename/update this components value from "Test" to "Test1". Product(Customfield) "Test" value also should rename to "Test1". Please help me on this ASAP.

 

Please help me on second request ASAP.

 

Thanks,

Venkatesh.

0 comments

Comment

Log in or Sign up to comment