Hello everyone! One question, how could I implement a smart value field, from fields created in a form, without being as custom fields in JIRA?
Thank you!
You need to do a REST API call to get the simplified answers of the form. You can then create a lookuptable to get the data from the fields. Then use the smart value it in the above description field.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I had a similar issue and solved it as follow. The temp fields were needed for me, since I had the form fields not connected to my other fields. Perhaps this fits for you as well.
(1)
. created some custom temp field like "temp_txt_01" "temp_select_01"
. no need to populate them on your screens
. then you do connect those from the form to the temp fields within the form
(2)
. those can then be used as follow {{Issue.fields.customfield_10208}} in automation
. the number you do lookup in custom fields URL
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.