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.