Since eazyBI doesn't store Description, Comments nor Attachments, how can I add the Description field to an eazyBI report?
There are some examples about how to extract comments with code and JMWE, but I've found no ways to get the Description.
Any ideas?
The eazyBI Support Team solved this question (thanks Martins!):
It is possible to import issue Description from JIRA into eazyBI by using JIRA MISC calculated custom fields.
In order to do that, at first, you could create a new JIRA MISC calculated custom field (with text type):
And use this following formula in the field description (you should note the field ID that would be needed in later steps):
<!-- @@Formula:
description = issue.getIssueObject().description;
if (description == null) return null;
description; -->
Next, you could open your eazyBI advanced settings and add these lines where you place your field ID (the 5digit number from URL of your custom field) instead of NNNNN
[jira.customfield_NNNNN] data_type = "text"
Then you could open your eazyBI import settings and select this new custom field to import as a property:
After import, you should be able to find new measure in "Measure" dimension (under calculated members > Issue properties) that should return issue description when "Issue" dimension and issue level is used in rows:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I do not see the calculated text field option in Jira custom fields. Looks like it will need some plugins.
Is there any option to use SIL manager or Automation plugin to create a calculated text field?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Faaisa Babu Ansar – responding to your question about creating a custom calculated field with SIL, here's a concrete example of another community member who created something similar.
And if that doesn't help, feel free to reach out to our super-responsive support team, who can always help you solve a custom issue!
Best, Amelie
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.