Hi Team,
We have field name called "Treatment:, it came up with addon "Risk Register". By mistake I unlock this field to check something using script mentioned in this scrip runner document.
When I ran the second script to unlock, the field "Treatment" is moved from "Managed" tag to "Locked". With "Managed" tag, I can configure the field, but not with "Locked". Is there any possibility to put it back from "Locked" to "Managed" ?
Please find the attached screenshots for your reference.
Before change :
After Change :
Solution : It worked.
If we run the second script again but change ConfigurationItemAccessLevel.LOCKED to ConfigurationItemAccessLevel.ADMIN this should return the field to 'managed' and allow edits to be made.
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.config.managedconfiguration.ConfigurationItemAccessLevel
import com.atlassian.jira.config.managedconfiguration.ManagedConfigurationItemService
import com.atlassian.jira.issue.CustomFieldManager
ManagedConfigurationItemService managedConfigurationItemService = ComponentAccessor.getComponent(ManagedConfigurationItemService)
CustomFieldManager customFieldManager = ComponentAccessor.getCustomFieldManager()
def cf = customFieldManager.getCustomFieldObjectByName('Treatment')
if (cf) {
def mci = managedConfigurationItemService.getManagedCustomField(cf)
if (mci)
{ def managedConfigurationItemBuilder = mci.newBuilder(); def updatedMci = managedConfigurationItemBuilder .setManaged(true) .setConfigurationItemAccessLevel(ConfigurationItemAccessLevel.ADMIN) .build(); managedConfigurationItemService.updateManagedConfigurationItem(updatedMci); }
}
I would suggest you query all the details of either another locked field from that addon or the same field in a different instance to view all the attributes of the mci.
Then remove the fields from the managed configuration and add it back with the missing property.
For example, the only managed items I have are related to agile. The code on that kbase for adding the item back is missing a step to set the source and i18n description
.setSource('com.pyxis.greenhopper.jira:reference-select-locked')
.setDescriptionI18nKey('gh.customfield.locked.desc')
There should be something similar for your field.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.