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.
I have a requirement to on demand copy a bug request from one project to another. The bug workflow in both the project is different. So we have a status mapping available.
I have given a button for users to create the bug workflow as per their need. But I am finding it difficult to transition the newly created Bug workflow to the correct status.
I am using the below post function to create the bug issue in a different project.
Create issues and subtasks by JWT
I am using set fields to set the status of newly created bug issue
%{00016}= "In Progress" ? "Analysis" : (%{00016} = "Open" ? "Open" : (%{00016}= "In Review" ? "Ready for Test" : (%{00016} = "Resolved" ? "Done" : (%{00016} = "Reopened" ? "Open" : (%{00016} = "Closed" ? "Done" : "Done" )))))
It works for In Progress, Open and Reopened but doesn't work for other status i.e. In Review, Closed, Resolved and I get an error as below
org.ofbiz.core.entity.GenericTransactionException: Commit failed, rollback previously requested by nested transaction.
Any inputs to resolve or another way to approach this requirement?
Regards,
Aditya