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
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hello,
I am trying to take a different workflow path based on a select list choice from the user. Meaning if the user selects Yes it would take one workflow path, if the user selects No it would take another.
Any ideas?
Thanks for the help!
You can't really do this in one go.
If you are ok with a two-step process, then you can simply set mutually opposing conditions on the two paths (on transition 1, "if cf = yes" and on transition 2, "if cf != yes"). The users will only ever be offered one transition, based on the current setting of the field.
What you can't do easily is put the field on the screen and then let it choose the transition that runs when the user commits it. This is because they've already started the transition when they get to the screen, so they've already chosen.
Two workarounds:
Hello,
Let me give an example. On issue creation we capture a few different variables through some select lists. Things like if a PMO resource should be involved or potentially someone from marketing or editorial. This information is captured by selecting Yes in select list. Later in the workflow, assuming one of these values were selected, we would work into an alternative workflow (as part of the same workflow of course). Once we capture the additional information in this step we would then transition back into the main workflow.
Let me know if this makes better sense.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
So in status 'A' or 'B' a user decides that to check a checkbox (or enter 'y' in a field or similar boolean function).
Later, in status 'D', create two transitions, to 'tE' and 'tD1'
Conditions on each:
'tE' - if ((checkbox = unchecked) OR (all conditional values populated)) , allow transition to status 'E'
'tD1' - if ((checkbox = checked) AND NOT (all conditional values populated)) display screen with conditional fields, transition back to status 'D'
This should only display the correct button depending on state of affairs.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Right, so it's the two-step case I mentioned earlier, which is quite easy to implement.
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.
No. A Condition will hide a transition from a user. A validator checks data is ok after the user has tried to commit the transition.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
What you're describing is a situation where you can check data before offering the user the chance to do something. So it's a Condition. You want two opposing ones.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Which condition should I add. There doesn't seem to be a condition which looks at a custom field.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Ah, yes, sorry, completely forgot - you'll need an add-on to provide the conditions. The JIRA Suite Utilities has one for custom fields if memory serves. (It's a well supported and free add-on)
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.
Where does one add the conditional statements? In the Issue Creation Screen is a field named Purchase Method with 3 choices.
I have 2 transitions out of the of the Issue Creation Screen. Transition 1: Purchase Method Cash and Transition 2: Purchase Method Credit. Where does one add the conditional statements?
Thanks
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.