Hi Team,
I am trying to bulk edit certain field value using JQL . This operation is being done through Automation rules for Jira. But I am not able to find field name when I search for it. Attached is the screenshot.
We are currently using 9.1.1 version.How do i resolve this?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It's not available at a basic level yet, you can view the feature request for this here: AUTO-131
There is a workaround though mentioned on this help page using advanced field editing:
Cascading select custom field
Select a single parent value then a related child value. You can address them by 'value' or by 'id'.
"customfield_11447" : { "value": "parent_option1", "child": { "value" : "p1_child1"} } or "customfield_11447" : { "id": 10112, "child": { "id" : 10115 } }
Ste
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Ste Wright
Thanks for the reply. I am actually trying bulk delete the value in that field (value being anything). How can i do so?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Is this a one-off? Could you use a CSV Import or a bulk edit action if yes?
If required for an Automation rule, I'd try this:
{
"fields": {
"customfield_10123": { "value" : null }
}
}
Ste
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.
Let us know how it goes :)
Ste
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.
Great!
If this answer helped, can you accept it? That helps others know in future that it can help them too!
Ste
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.