You may also view them from the database with the following SQL :
select * from jiraissue where pkey='JRA-3166';
replace JRA-3166 with the appropriate project key.
Hi
Simply go to issue tab/menu and use project filter for each project.
You can save your search and use Filter Result gadget to see them separately on Dashboard.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you for your request , but i need to do that using Java language and API JIRA, i had already list Projets and Issues , now i need to retrieve issues foreach projets? ==>This is methods Getting Projects and Isuues that i'm using public void comboProjects(){ ProjectRestClient client = restClient.getProjectClient(); for (final BasicProject expected : client.getAllProjects().claim()) { Promise<Project> promise = client.getProject(expected.getSelf()); promise.then(new FutureCallback<Project>() { public void onSuccess(Project actual) { //equals(expected.getKey()); promises.add(actual); System.out.println(expected.getName()); }public void onFailure(Throwable e) { System.out.println("error: " + e.getMessage()); } });}} // ==> method get Isues Promise<SearchResult> searchJqlPromise = restClient .getSearchClient() .searchJql("fixVersion is empty"); //.searchJql("project = Gestion courrier AND reporter = fzahrazacraoui",1,0,issues); public void comboIssues(){ Promise<SearchResult> promise = restClient .getSearchClient() .searchJql("fixVersion is empty"); //.searchJql("project = Gestion courrier AND reporter = fzahrazacraoui",1,0,issues); for (final Issue issue : promise.claim().getIssues()) { promise.then(new FutureCallback<SearchResult>() { public void onSuccess(SearchResult result) { equals(issue.getSelf()); issues.add(issue); //searchResults.add(actual); System.out.println(issue.getSummary()); } public void onFailure(Throwable e) { System.out.println("error: " + e.getMessage()); } }); } }
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Add the JQL "Project = X" as part of the loop.
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.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.