Documentation for GreenHopper 6.2.x. Documentation for earlier versions of GreenHopper is [available too].

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

A Rapid View can include issues from one or more projects.

You need a Rapid View so that you can view issues on the Rapid Board. You can either use a Rapid View that someone else has created, or create a new Rapid View for yourself.

To create a new Rapid View:

  1. Either
    • Go to the 'Getting Started' page (click 'Agile' > Getting Started') and click 'Create a New Rapid View':



      or

    • Select 'Create' from athe 'cog' menu at the top-right of the Rapid Board:


 

(info) Before you can create a new Rapid View, you must have access to at least one saved JIRA filter (either your own filter, or one that someone else has shared with one). If you don't, first create and save a new filter in JIRA (you may want to see the JQL documentation).

To create a new Rapid View:

  1. Select 'Agile' > 'Manage Rapid Views' from the top navigation menu.
  2. Click the 'New Rapid View' link at the top right of the 'Manage Rapid Views' screen.
  3. Specify the following fields in the 'New Rapid View' popup (see screenshot below):
    • 'Rapid View Name' — Enter the name of the Rapid View as it will appear in the 'Rapid View dropdown'.
    • 'Saved Filter' — Select the JIRA filter to be used by this Rapid View (see some Creating a Rapid View (draft for 5.8.3)below).
      • 'Shares' shows which groups or projects roles have access to the currently selected saved filter. Your new Rapid View will be available to all users who have access to your chosen filter.
        (info) If a colleague has not shared their saved filter with you, that filter will not be available for you to choose in this field.
  4. Click the 'Edit Filter' link if you wish to alter the JIRA filter. (You will only be able to do this if you are the owner of the JIRA filter. If you are not, then the owner's name will be shown instead of the 'Edit Filter' link.)
  5. Click the 'Create' button to create the Rapid View.

Congratulations — you have created a new Rapid View!

Next steps:

  • The configuration screen for your new Rapid View will be displayed — if you wish to make any changes, see Configuring a Rapid View.
  • To start using your new Rapid View right away, click the 'Use Rapid View' button at the top of the screen. See Using the Rapid Board.

Screenshot: creating a new Rapid View

Some example JQL you might wish to use for your Saved Filter:

  • Select all issues which are Unscheduled or in an Unreleased Fix Version:

    project = GHS AND (fixVersion in unreleasedVersions() or fixVersion is empty
  • Select all issues you are interested in:

    (assignee = currentUser() or reporter = currentUser()) AND (fixVersion in unreleasedVersions() or fixVersion is empty)
  • Show all issues that you have participated in and have been updated in the last week. (info) This requires the JIRA Toolkit Plugin.

    updatedDate > -7d AND Participants = currentUser()
  • Select all issues for a team (using a Label custom field named 'Team')

    (team = ateam or team = dreamteam or team = engineroom) AND (fixVersion in unreleasedVersions() or fixVersion is empty)
  • Only select my bugs for a bugfix team

    project = GHS AND team = bugfix AND issuetype = bug AND (fixVersion in unreleasedVersions() or fixVersion is empty)
  • Try fixVersion = earliestUnreleasedVersion(PROJECT KEY) to see all issues in the next Fix Version to be released:

    fixVersion = earliestUnreleasedVersion(PROJECT KEY) 

(info) Refer to JIRA's Advanced Searching guide for your detailed JQL reference.

Let your imagination run wild and please comment below with your best JQL suggestions to help us learn what you are looking for.

  • No labels