Hello,
I am trying to write an advanced expression so the Summary field will contain a text field from a form (already linked in forms to the Summary field) AND add a cascading field which is comprised of a team (parent) and client (child) once the form is submitted and task is created in Jira.
Example:
{{issue.summary}} - {{issue.CS Team and Client list.value""}}
"Campaign launch - Team ABC - Client XYZ
Error:
Hi @Trevor Overstreet - You don't need to use the More Options section for this. You just need to add the Summary field from the "Choose fields to Set" selector. Then place that smart value expression in there and you should be all set.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Mark Segall so I tried the origianl expression and was missing the cascading field data entirely. I altered the expression to {{issue.summary}} - {{issue.CS Team and Client list.value}} but there's an issue with the cascading field.
The result now is "Campaign launch - Team ABC".
I am missing the client (child value) at the end ( - Client XYZ)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes - You'll want something like this:
{{issue.summary}} - {{issue.CS Team and Client list.value}}|{{issue.CS Team and Client list.child.value}}
Note - I'm using a pipe ("|") to separate the parent/child in the cascade. You can use whatever you want there.
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.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.