I have a JSD Next Gen project, SERVICE, and want to create a report that shows all users who worked on the ticket. Worked on the ticket is defined as:
I'd like the report to look something like this:
Issue | Assignees | Request participants | Commentors
SERVICE-1 | A Doe, B Doe, C Doe | B Doe, D Doe | A Doe, B Doe
SERVICE-2 | E Doe, F Doe, A Doe | C Doe, G Doe, H Doe | A Doe, G Doe, H Doe
Any help would be appreciated!
Thanks,
Paul
I would suggest using the calculated JavaScript custom field to track Activity in the issue. The solution could show you anyone working on the issue, including comments. The formula maps users to Assignee dimension. It would be easier to use one dimension to see all the contributions to the ticket.
Here is a post in the eazyBI community portal with Activity history data import. You can use the solution as it is or add some filters to log specified change activities only.
Daina / support@eazybi.com
All,
As an update here are my current blockers...
Again, any assistance would be much appreciated!
Details below
Pages: Time, Projects, Issue Type
Rows: Issue
Columns: List of current and previous Assignees, List of current and previous Request participants
Column definitions:
List of current and previous Assignees
Generate(
-- go through all Assignee users
Filter(
[Assignee].[User].Members,
-- check whether user was assigned to issue at some point
(
[Measures].[Transitions to assignee],
[Time].CurrentHierarchy.DefaultMember
) > 0
),
-- get assignee names separated by comma
[Assignee].CurrentMember.Name,
","
)
List of current and previous Request participants
Generate(
-- go through all Request participant users
Filter(
[Request participants].[User].Members,
-- check whether user was assigned to issue at some point
(
[Measures].[Transitions to Request participants],
[Time].CurrentHierarchy.DefaultMember
) > 0
),
-- get Request participant names separated by comma
[Request participants].CurrentMember.Name,
","
)
Transitions to Request participants
( [Measures].[Transitions to], [Transition Field].[Request participants])
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Custom field request participants is a multi-value custom field. eazyBI can track and import changes for single value custom fields only.
If you are on a cloud, you can use JavaScript custom field to access any data from Jira, define, and import a new field representing Request Participants.
eazyBI uses JAVA API for a server and we load only data pulled in for import. Therefore, you can't access all Jira data via JavaAcript during the import if you are on a server, you can consider using some scripted fields for this, though.
Daina / support@eazybi.com
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.