Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Basics

To search issues with repeating go to Jira issue navigator and use JQL query:

...

Next occurrence” column

Please check following to read how to add “Next occurrence” columns to your views: Next occurrence column field.

More examples

JQL

Result

Code Block
codedoers.repeating.nextOccurrenceDate is not empty

search all issues with repeating with valid next occurrence date

Code Block
codedoers.repeating.rule is not empty

search all issues with repeating. Including invalid rules and completed recursion - with empty codedoers.repeating.nextOccurrenceDate

Code Block
codedoers.repeating.rule is not empty 
order by codedoers.repeating.nextOccurrenceDate asc

as above, but the results are sorted ascending by the next occurrence date

Code Block
codedoers.repeating.nextOccurrenceDate > now() 
and codedoers.repeating.nextOccurrenceDate < endOfWeek()

search issues with repeating that occurs after now and until the end of week

Code Block
codedoers.repeating.rule ~ "FREQ=MONTHLY"

search all monthly repeatings

Code Block
codedoers.repeating.rule ~ "FREQ=DAILY"

search all daily repeatings

Code Block
codedoers.repeating.rule ~ "INTERVAL=5"

search all repeatings with intervel equals to 5 (interval is defined by Repeats every fields. see this page for details)

Code Block
codedoers.repeating.rule ~ "FREQ=MONTHLY"
and codedoers.repeating.rule ~ "INTERVAL=5"

search all montlhy repeatings with interval equals to 5

Code Block
codedoers.repeating.repeatedBy is not empty

search all issues which are repeated by repeating issues add-on

Code Block
codedoers.repeating.repeatedBy = "ISSUEKEY-1"

search all issues which are repeated by ISSUEKEY-1

Code Block
codedoers.repeating.repeatedBy = "ISSUEKEY-11" 
and created >= "2017-07-16 17:05"

search all issues which are repeated by ISSUEKEY-11 and was created after 2017-07-16 17:05

Code Block
codedoers.repeating.hasErrors is not empty

search issues with repeating that failed during last execution

Code Block
codedoers.repeating.owner = admin

search all issues where given user is owner of the repeating

JIRA 7.x.x JQL aliases and their equivalents in JIRA 6.x.x

JQL alias (JIRA 7.x.x and above)

JIRA 6.x.x equivalent

Code Block
codedoers.repeating.rule
Code Block
issue.property[com.codedoers.issue.recurrence].rRule
Code Block
codedoers.repeating.nextOccurrenceDate
Code Block
issue.property[com.codedoers.issue.recurrence].nextOccurrenceDate
Code Block
codedoers.repeating.hasErrors
Code Block
issue.property[com.codedoers.issue.recurrence.last].hasErrors
Code Block
codedoers.repeating.repeatedBy
Code Block
issue.property[com.codedoers.issue.recurrence.source].issueKey