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 the most out of Jira Service Management
Solve customer problems efficiently and deliver outstanding service experiences.
Learning Path
Adopt ITSM practices to deliver exceptional service
Become familiar with the principles and practices that drive ITSM. Then, learn how to configure and use Jira Service Management to implement them.
Atlassian Certified Associate
Jira Service Management Agent Essentials certification
Prove you know what's essential to providing efficient and resolution-focused service in Jira Service Management.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.