I'm creating an automation to send email notifications on threshold breaches and I want to display multiple custom fields in the email content.
One of those custom fields is a cascading field named SeverityWiseCategory and it contains data like (Level 1 Severe - Assistance | Level 1 Severe - Bug Fix, same for other levels it contains a value and a sub value)
I'm unable to display it in the content can anyone help me?
As you can see in the snip added below all other fields are displaying data but this one is showing a link.
Hi @Ali Hamza ,
To get the value of the parent (from here):
{{issue.fields.Cascade.value}}
And for the child:
{{issue.fields.Cascade.child.value}}
So in your case use the smart values:
{{issue.fields.SeverityWiseCategory.value}} for the parent and {{issue.fields.SeverityWiseCategory.child.value}} for the child
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Ali Hamza , when you accept the answer, you help others to find the answer quicker.
Have nice day!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I could not get this to work exactly like you suggested but was able to get it to work like this:
Category: {{issue.fields.customfield_10023.value}}, {{issue.fields.customfield_10023.child.value}}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Recommended Learning For You
Level up your skills with Atlassian learning
Learning Path
Get started with Jira Service Management
These short, self-paced courses will help you get up and running in Jira Service Management in just 90 minutes.
Learning Path
Adopt ITSM practices with Jira Service Management
Use this path to build your IT Service Management knowledge and earn an Atlassian certification.
Setting Up ITSM Projects in Jira Service Management
This training series helps you get started in Jira Service Management quickly with the new ITSM project template.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.