All eazyBI for Jira eazyBI for Confluence Private eazyBI

Summary

Calculated field to return the summary for each issue. This field can be imported as property.

Account-specific calculated field

Account specific calculated fields are defined in Source Data → Import options.

Settings for the new field

Internal name

cf_summary

Display nameSummary
Data type

text 

Additional advanced settings
json_fields = ["summary"]

Custom JavaScript code:

return issue.fields.summary;

Global calculated field

Global calculated fields are defined in eazyBI advanced settings.

Here are the settings for the new field definition. Keep the opening and closing quotation marks. ''', do not delete them.

[jira.customfield_cf_summary]
name = "Summary"
data_type = "text"
json_fields = "summary"
javascript_code = '''
return issue.fields.summary;
'''