/
Workaround to create Arsenale report on duplicate fields
Workaround to create Arsenale report on duplicate fields
This article explains a workaround to create an Arsenale report on duplicate fields available in Jira.
Instructions
Login as administrator. Navigate to > ScriptRunner > Fields.
Create a scripted field by navigating Create script field > custom script field, provide required details like Name, Description, etc.
In the Script Area, apply the below script and modify based on duplicate field details.
import com.atlassian.jira.component.ComponentAccessor import com.atlassian.jira.issue.CustomFieldManager import com.atlassian.jira.issue.fields.CustomField Long FIELD_ID = <Duplicate Field ID> // replace with ID of actual Tempo "Team" field def cf = ComponentAccessor.customFieldManager.getCustomFieldObject(FIELD_ID) def cfType = cf.getCustomFieldType() def val = issue.getCustomFieldValue(cf) return val ? cfType.getDisplayedValue(val)?.getName() : null
Navigate to Dataplane Reports > Reports > Create Report and add the scripted field in the Columns section.
Run the Report to get the result.
Make sure to install the ScriptRunner app to create Scripted field
, multiple selections available,
Related content
Copy the reporter and watchers on duplicate issues
Copy the reporter and watchers on duplicate issues
More like this
Copy the reporter and watchers on duplicate issues
Copy the reporter and watchers on duplicate issues
More like this
Copy the reporter and watchers on duplicate issues
Copy the reporter and watchers on duplicate issues
More like this
Merge custom fields
Merge custom fields
More like this
Why do I see duplicated Jira fields on the mappings?
Why do I see duplicated Jira fields on the mappings?
More like this
Enable cloning for any custom or system fields in the User Interface
Enable cloning for any custom or system fields in the User Interface
More like this