I am attempting to pull the data entered into a Form into a Custom Field using Automation to display in the Context field (Details) portion of the request Issue View.
{{forms.<UUID>}}:
{{forms.ad5aba05-9f96-4999-898e-ea6d8d1dcea6.last.nh_startDate.fullDate}}
Form data does not get added to a custom field using the "Edit issue fields" automation command:
{{forms.ad5aba05-9f96-4999-898e-ea6d8d1dcea6.last.nh_startDate.jiraDate}}
The form data I wish to add to the custom field is is successfully populated into the Description field, just not the custom field, when using the exact same {{forms.<UUID>}}.
The automation log lists "Issues edited successfully" for the Edit Issue component that is configured to update the Custom Field.
While testing within a single Service Desk instance, and using the {{forms}} smart value with the "Form submitted" trigger the form value is successfully passed to the custom field:
{forms.last.nh_startDate.jiraDate}}
I simply don't understand why I cannot pass the form data to the custom field in this instance, while there is no issue passing it to the Description.
Hi @Greg
To confirm the scenario...
Have you tried updating the custom field with the full smart value, using the respective UUID:
{{issue.forms.<UUID>.nh_startDate.jiraDate}}
Kind regards,
Bill
Hi @Greg
You're on the right track! Since Jira's native JQL doesn't support direct comparisons between the assignee’s account ID and the form submitter’s account ID, you’ll need to handle this within Jira Automation.
1️⃣ Ensure the Form Captures the Requester
2️⃣ Set Up Jira Automation to Compare Submitter & Assignee
Trigger:
Condition (Advanced Compare Condition):
{{issue.assignee.accountId}}
{{issue.Requested By.accountId}}
(or the field mapped from the form)Actions:
✅ Transition the issue to the next status.
✅ Send a Slack message notifying the team.
If you're looking for a more structured way to manage approval flows, you might find Smart Forms for Jira useful.
1️⃣ Ensure the Form Captures the Requester
2️⃣ Set Up Jira Automation to Check the Submitter
Trigger:
Condition (Advanced Compare Condition):
{{issue.assignee.accountId}}
{{issue.Requested By.accountId}}
(or the field mapped from the form)Actions:
✅ Transition the issue to the next status.
✅ Send a Slack message notifying the team.
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.