You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
Hello!
I have customer asset fields on portal request for cascading selection of user assets.
It works well. But i want to make an automation that checks if the connections are valid.
This Filter issue scope (AQL) works on Asset object field configuration
objecttype = machine and partofproject = ${customfield_10074}.
In automation i want to do the same check using AQL condition
objecttype = machine and partofproject = ${customfield_10074} - does not work in automation.
Hi @Kukk ,
If you use Automation for Jira, and want to include a field, you should use Jira smart values.
This will turn you AQL clause into:
objecttype = machine and partofproject = "{{issue.fields.customfield_10074}}"
Don't forget to use double quotes. Because if you have spaces in the name/label of the partofproject value, it will not work.
Good luck,
Rudy
Rudy! It worked! Thanks a lot that you took the time to answer, i did not make the connection that Jira Automation AQL condition can take smart values.
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.