Versions Compared

Key

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

...

  • Calculated Number Field : a calculated custom field returning a number (integer or float). It is a read-only field that returns the result of the evaluation of a formula, such as the addition of two other fields.
  • Calculated Text Field (new in 1.5.5): a calculated custom field returning a String. It is a read-only field that returns the result of the evaluation of a formula, such as the concatenation of two other fields.
    • Exact Text Searcher (Statistics-compatible) (new in 1.5.6): a custom searcher that allows calculated text fields to be used in statistics gadgets
  • Calculated Date/Time Field (new in 1.5.5): a calculated custom field returning a java.util.Date (which represents a date+time). It is a read-only field that returns the result of the evaluation of a formula.
  • Transition Date/Time Field (new in 1.2): a calculated custom field returning the date and time of the last execution of a specified workflow transition.
  • Transition Caller Field (new in 1.2): a calculated custom field returning the caller of the last execution of a specified workflow transition.
  • Transition Count Field (new in 1.5.11): a calculated custom field returning the number of times a specified workflow transition was executed.
  • Last Field Value Change Date/Time Field (new in 1.6): a calculated custom field returning the date and time a field was last modified.
  • Parent Status Field (new in 1.2.2): a calculated custom field returning the Status of the issue's parent issue.

...

Code Block
This field represents the Resolver of this issue.
<!-- @TransitionId: 5 -->
<!-- @Execution: last -->

Anchor
fieldmodifieddate
fieldmodifieddate

Last Field Value Change Date/Time Field (new in 1.6)

A date/time field that returns the last time a field's value was changed.

  1. Create a new custom field, choosing "Last Field Value Change Date/Time Field" for its type.
  2. During step 2, in the Description field, include the field name as described below.
  3. Re-index your data, as JIRA will kindly suggest you to.
Indicating the field

The field whose last modification date should be returned must be indicated in the field description inside an html comment (so that it remains invisible when showing the field description), preceded by the following keyword: @@Field:  (note the colon at the end). For example:

Code Block
<!-- @@Field: <field-name> -->

The field name (indicated as <field-name> above) should be specified as it appears in the "history" tab.

You can naturally include the real description of the custom field as well. For example:

Code Block
This field represents the date and time of the Resolution of this issue.
<!-- @@Field: Summary -->

Anchor
parentstatusfield
parentstatusfield

...