Degraded performance Customers may experience intermittent errors using Community search. Our platform vendor is investigating.
It's not the same without you
Join the community to find out what other Atlassian users are discussing, debating and creating.
Hi guys,
can you please help me how to get the issue status in the <! @@Formula ?
When I use
issue.get("status").toString();
I get something like COM.ATLASSIAN.JIRA.ISSUE.STATUS.STATUSIMPL ...
While I was expectiong to get "Closed" or "Open". I also failed with syntax from JIRA dev documentation
issue.getStatusObject().getSimpleStatus().getName()
Many thanks,
Jarda
P.S.: is there any way how to debug the formula? In case it fails to compile I get the custom field empty which gives me no hint on what's wrong. Any log would help? Thank you
Hi,
as stated in the documentation (as of... now), you should look inside atlassian-jira.log for errors (look at the end of the file right after displaying the issue).
In your case, you want to use:
issue.get("status").getName();
See https://innovalog.atlassian.net/wiki/x/BYAbAg for details.
Hi, I've tried to find outwardlinks where status is not closed:
&& ! issueLink.getDestinationObject().get("status").getName().equals("Closed")
where issuelink is an outwardLink.
Could you help me please, how to deal with it?
Thank you!
Here is the whole code, if it helps:
<!-- @@Formula: import com.atlassian.jira.component.ComponentAccessor; import org.apache.commons.lang.StringUtils; DefectKeys = new ArrayList(); outwardLinks = ComponentAccessor.getIssueLinkManager().getOutwardLinks(issue.getIssueObject().getId()); for (issueLink : outwardLinks.iterator()) { if (issueLink.getIssueLinkType().getOutward().equals("is Parent of") && ! issueLink.getDestinationObject().getStatus().getName().equals("Closed") ) { DefectKeys.add(issueLink.getDestinationObject().getKey()); } } if (DefectKeys.isEmpty()) return "Empty"; StringUtils.join(DefectKeys, ","); -->
Thank you!
This community is celebrating its one-year anniversary and Atlassian co-founder Mike Cannon-Brookes has all the feels.
Read moreAtlas Camp is our developer event which will take place in Barcelona, Spain from the 6th -7th of September . This is a great opportunity to meet other developers and get n...
Connect with like-minded Atlassian users at free events near you!
Find a groupConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no AUG chapters near you at the moment.
Start an AUGYou're one step closer to meeting fellow Atlassian users at your local meet up. Learn more about AUGs
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.