E.g. Set up an automation rule:
When a ticket with a title "Create Survey" is created,
Create 10 tasks as follows...
Hey Tukaram,
maybe the following helps you. But I'm not sure why you need this information for a set of issues. Maybe you want to tell us more about your use case?
import com.atlassian.jira.component.ComponentAccessor;
import com.atlassian.jira.bc.JiraServiceContextImpl;
import com.atlassian.jira.bc.filter.SearchRequestService;
import com.atlassian.jira.bc.issue.search.SearchService;
import com.atlassian.jira.component.ComponentAccessor;
import com.atlassian.jira.issue.search.SearchResults;
import com.atlassian.jira.user.ApplicationUser;
import com.atlassian.jira.web.bean.PagerFilter;
import com.atlassian.query.Query;
SearchResults getIssuesByJQL(String jql) throws Exception
{
SearchService serchService = ComponentAccessor.getComponentOfType(SearchService.class);
SearchService.ParseResult parseResult =
serchService.parseQuery(ComponentAccessor.getJiraAuthenticationContext().getLoggedInUser(),
jql);
if (!parseResult.isValid())
{
throw new Exception("jql is not valid. jql was "+jql);
}
Query query = parseResult.getQuery();
SearchResults sr =
serchService.search(ComponentAccessor.getJiraAuthenticationContext().getLoggedInUser(),
query, PagerFilter.getUnlimitedFilter());
return sr;
}
return getIssuesByJQL("status = 'in progress'").getTotal()
Cheers,
Julian
Thanks Julian,
Actually i need to display monthly "In Progress" Status count divide by developer group count
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.