Skip to main content

Filters In JIRA

JIRA Issue tracking software provides much better functionality for filtering too. We will learn this in this article. It will display you particular data whatever you needed. If you have thousand of bugs, hundreds of software project still you can easily find what you want perfectly.

If we have posted issues on earlier days of the project and you need it in middle of the software project then you can find it by searching functionality. If you want to Change or Edit the issue then you can do it and again save it.

Here are the steps for searching your issues:

Click on 'Issue' and select 'Open My Issue'. It will display you the issues which have been posted by you.


After wards you can able to see below screen where you can see list of issues. We just completed one step for finding our issues.


Now you can see different options on the left hand dashboard. 'My Open Issue’,’ Reported by me', 'Recently Viewed’,’ All Issues' this are the option for filtering issues of software project.


If you will click on 'Reported by me' option then JIRA will display all the issues which have been reported by you. In 'Recently Viewed' option you can find the issue which has been reviewed recently.
'All Issues' button displays all the posted issues.

Below Image displays another way to search your issue. Here you can able to see different fields with drop down menu.


As shown in figure, we can search issues by selecting particular software project.
For example, you are having more than 10 project and you want to find an issue which have been posted a long time ago. Now you need to just select that project from drop down menu. Once you click on project then it will display you drop down menu from where you can select your software project and find an issue for it.

Same way you can find issue by selecting Issue Type. See the below image.


Here you can see that, we can search by one issue type and more than one issue type.
For Example, if you want to search issue which have issue type as ‘Bug’ then select Type as Bug and click on search button. JIRA will displayed you all the Bug type Issues.


In this image you can see that, Issues can be finding by status also. If you want to find issues by its status then you can find it from here. For example if developer want to verify that how many issues are still in ‘ÓPEN’ status then he just needs to select ‘OPEN’ status from the status drop down.
Then JIRA will display all the issues which have Open status.

Here you can verify issues by more than one filter, like select Project first and then select Issue Type and Status after wards click on search button.
Thus, JIRA will display you proper result for particular project’s issues with selected issue type and status.

You can search issues by selecting assigned person also. For Example if you want to find issues which have been assigned to a group or a person then you can do it from here.


You can search issues by its text. Enter text on search field and click on search button. After wards JIRA will display you all the issues which will related to this context.

This all Filter can be managed by JIRA project management software too. By clicking on ‘Save as’ button you can create new filter.
After creating filter, you can save your filtered issues in it. This is the key feature of JIRA.


As per the image you can see the favorite Filters on left hand side. This has been created for saving needed issues. You can Delete this filter and Edit it.

Go to ‘Issues’ from main screen and then select ‘Manage Filters’. You can see below screen here.



You can see here, all the filters have been managed here. You can Delete and edit it. Even if you will have more filters then you can search it from here also.

You can verify issues from ‘Issues Navigator’ from profile tab.

This is the whole procedure how you can filter all the issues and manage it accordingly.

Comments

Popular posts from this blog

SSO with SAML login scenario in JMeter

SAML(Security Assertion Markup Language) is increasingly being used to perform single sign-on(SSO) operations. As WikiPedia puts it, SAML is an XML-based open standard data format for exchanging authentication and authorization data between parties, in particular, between an identity provider and a service provider. With the rise in use of SAML in web applications, we may need to handle this in JMeter. This step-by-step tutorial shows SAML JMeter scenario to perform login operation. First request from JMeter is a GET request to fetch Login page. We need to fetch two values ‘SAMLRequest’ and ‘RelayState’ from the Login page response data. We can do this by using  Regular Expression Extractor . These two values need to be sent in POST request to service provider. Refer below image to see how to do this. We will get an HTML login page as a response to the request sent in 1st step. We need to fetch values of some hidden elements to pass it in the next request. We can do this b

Reading data from text file in SoapUI using groovy script

How to read data from text file in SoapUI. SoapUI Pro has some advance feature which is not in SaopUI as data fetching from external sources so in SoapUI we use Groovy script for that. Following are the peace of groovy script code for reading data from text file. 1. Reading all data from text file. //reading all txt file at once File file = new File("E://TestData.txt") fileContent = file.getText()                  log.info fileContent 2. Reading data line by line from text file. //reading text line by line File file1 = new File(" E://TestData.txt ") List textLine = file1.readLines() log.info textLine 3. Reading data randomly of any line from text file. //reading text randon line number File file2 = new File(" E://TestData.txt ") List textLine2 = file2.readLines() rowIndex  =  Math.abs(new Random().nextInt() % 4 + 1) log.info textLine2[rowIndex]

VBScript Code - Function to convert CSV file into excel and viceversa in QTP using VBScript

We at times are required to convert excel files into csv to read as flat files and sometime require to convert a csv file into excel file to use excel features on the data.   Below function shows how to convert an csv file into excel file and vice versa. We can also convert to other formats based on constants Here constant value 23 is used to create a csv file and constant -4143 to save a file as xls file. Once the destination file is created, we can delete the source file as shown below.  In case of any issue in understanding the code, please add in comment section Call func_ConversionCSVExcel("E:\Test.csv", "E:\Test_converted.xls", "csvtoexcel") Public Function func_ConversionCSVExcel(strSrcFile, strDestFile, Conversion) on error resume next Set objExcel = CreateObject("Excel.application") set objExcelBook = objExcel.Workbooks.Open(strSrcFile) objExcel.application.visible=false objExcel.application.displayalerts=