Hi Team,
I am new to the jira and jira service management. Please help me the detailed steps, how to achieve below requirement using automation rules.
Below is my requirement.
Using Jira Service Management custom dropdown selected value change get the description field value from JSM assets and append to the JSM form text field.
Thanks
Tirupal
When a user selects a value from an Assets dropdown in Jira Service Management, fetch the asset's description and append it to a text field.
Steps:
Go to Project Settings > Automation > Create Rule.
Trigger:
Field value changed
Select your Assets dropdown field.
Action: Lookup Objects
Use IQL:
Name = "{{issue.customfield_XXXXX.name}}"
(Replace with your dropdown field’s ID)
Action: Edit Issue
Select the text field you want to update.
Use smart value:
{{issue.customfield_YYYY}}
Asset Description: {{lookupObjects.Description}}
(Replace with correct field IDs)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.