Versions Compared

Key

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

User can use variables in field values during configure repeating details. A variable A variable is one type of reference in reference in Velocity Template Language (VTL) and can refer to objects defined in template context. To use variable please put it name in velocity variable syntax: $vtlReferrenceName or ${vtlReferrenceName}.

Below are listed available variables that can be used in velocity template:

Variable

Type

Description

Sample value

$sourceIssue

Issue

cloned (for Clone Issue) or parent (for Create Sub-task) issue

DEMO-1

$repeating

Repeating

current repeating


Sample usages

Field

Velocity expression

Sample value

Summary

CLONE - $sourceIssue.

sumamry

summary

CLONE - This is source issue summary

Description

Issue repeated by $sourceIssue.key at $repeating.date.formatDateISO

Issue repeated by DEMO-1

at 2016

at 2016-09-11

Date time custom field

$repeating.date.addDays(2).withHours(10).withMinutes(0)

11/sep/16 10:00 AM

String custom field

$!sourceIssue.getCustomField($this)

This is some source issue value for "String custom field"