You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
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.