Template Comments (Service Management)

This feature is available in Jira Service Management only.

This built-in provides configurable template comments for Jira Service Management agents replying to customers.

The templates can use attributes of the current issue, linked issues, the reporter and current user, to create personalized comments.

Administrators can set up different available templates for different projects, or roles etc.

You can also specify a template to be used by default.

Usage

This feature is disabled by default as since it was introduced, Atlassian added a similar feature. Their feature allows agents to save their own comments, however it does not allow (possibly complex) calculations on the issue’s attributes to populate the comment.

Enabling this feature will disable Service Management’s conversational mode (a default comment of the form, which provides a default snippet, as typically this replaces that. Disabling this feature in ScriptRunner will enable conversational mode.

If you have a need for this feature, enable it from Built-in Scripts → _Service Desk Template Comments.

A few sample templates are provided. You can edit or delete them as appropriate.

When creating new templates, at the minimum you must provide the Name and Template.

The name is shown to the user in the dropdown box, to allow them to select that comment:

The template is processed by GStringTemplateEngine. To see the variables available to use, expand the Examples link, and click Kitchen Sink. Select a sample issue to preview the template with, and click Preview. You should see something like the following:

There is an additional string you can use in your template: {CURSOR}. This is not a variable so should not have a dollar sign. If found, the caret will be placed at this position within the comment text box. See the "default" template for an example.

Snippets And Default

If a comment is marked as a snippet, it will be inserted at the current cursor position in the comment. If not, it will set or replace the entire comment.

A good strategy is to have a single default comment, with the cursor placed between the greeting and sign-off, and then the rest of the templates be snippets.

That way you can form the response from multiple snippets.

Conditions

The Condition / Code section controls two things

  • whether the template will be available for selection by the user

  • additional variables available to the template

To have different comments for different projects, you could use a condition such as:

issue.projectObject.key == 'ABC'
The Condition / Code section can also provide additional variables to the template.

In this example, we retrieve the value of a custom field and provide it in the template:

groovy
import com.atlassian.jira.component.ComponentAccessor def customFieldManager = ComponentAccessor.getCustomFieldManager() def refundCf = customFieldManager.getCustomFieldObjectByName("Refund Amount") config.refund = issue.getCustomFieldValue(refundCf) ?: 0 return true // must return true otherwise the comment will be hidden

The template may look like:

groovy
Dear $customerFirstName, We have processed your claim and you are entitled to a refund of USD: $refund Nice!
On this page