I’m importing the custom field “Target Version” from Jira which has a version picker data type in Jira. When I select the boxes to import it as a dimension and a property, I can’t access the version properties that I can see it imports: startdate, releasedate, id, etc… When I view the AllProperties for the individual target versions I just see “KEY: Release 19.2” as opposed to FixVersion which shows something like:
“KEY: 11896
URL_ID: 11896
PARENT_KEY: ProjA
Start date: 2019-05-08
Release date: 2019-07-29
Status: Released
Description: PI 19.2”
What advanced options do I set to get it to make all the properties accessible?
Version picker dimension members are not populated with all the same properties as standard Fix version or Affects version dimensions. We have this feature in our backlog, but it is not yet planned for the implementation.
Currently, a partial workaround is possible with a custom formula by searching the same version name in the Fix version dimension. The limitation of the solution is that we must know in which project the version is located since the version name is the only value for search.
Filter(
Descendants([Fix Version].[DEMO Gamma],[Fix Version].[Version]),
[Fix Version].CurrentMember.Name=[Some version picker].CurrentMember.Name
).Item(0).AllProperties
This example is designed for the Some version picker field that is in the report rows and assuming that the version is from project DEMO Gamma.