Estimada comunidad,
Tengo la necesidad de resolver una automatización, la idea es que cuando se crea una EPICA, se automatice un campo personalizado y baje hacia la HISTORIA. Este campo esta completo en la EPICA y necesito que se autocomplete en la HISTORIA.
¿Es esto posible?
dejo la estructura:
Dear community,
I need to resolve an automation issue. The idea is that when an EPIC is created, a custom field is automated and transferred down to the STORY. This field is filled in the EPIC, and I need it to be auto-filled in the STORY.
Is this possible?
Here’s the structure:
I think you have a couple of problems here:
Thanks for the answer Dick, It would look like this:
{
"update": {
"customfield_10099": [
{
"set": {
"value": "{{triggerIssue.fields.customfield_10099.value}}",
"child": {
"value": "{{triggerIssue.child.fields.customfield_10099.value}}"
}
}
}
]
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Maximiliano,
Please study Atlassian on advanced-field-editing-using-json/
Set is used only for filling in multicheckboxes.
A custom field is filled with a value in quite a different way.
Hope this helps you
Dick
By voting for helpful posts and marking answers to your question, you're helping people with similar questions find a solution more quickly. Sharing is caring applies to knowledge as well :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Any progress to share with us?
Dick
By voting for helpful posts and marking answers to your question, you're helping people with similar questions find a solution more quickly. Sharing is caring applies to knowledge as well :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Dick, i try to go for a more simple way,but in response of that, i have this:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Im asking jira to copy the information of the custom field, wish is complete in the parent, to the history, whit the same field but empty. I cant do it yet.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
{
"update": {
"customfield_10099": [
{
"set": {
"value": "{{triggerIssue.fields.customfield_10099.value}}",
"child": {
"value": "{{triggerIssue.fields.customfield_10099.child.value}}"
}
}
}
]
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I can finaly can replicate the custom fiel, but this field has a cascading select whit 1 level that dont replicate. Do you know how to do it?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
you can always list contents of multiselect fields using the automation "Add value to audit Log" step. This way you can study what is inside a regular issue, and what should be inside your code to match the things you would like to change.
With this in mind, adorn your automation with these steps in key places (like right before you want to edit the field. A copy of the logs and errors you encounter would be a great way to move forward in solving your question.
Dick
By voting for helpful posts and marking answers to your question, you're helping people with similar questions find a solution more quickly. Sharing is caring applies to knowledge as well :)
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.