We are moving from Okta<>Jira SD Datacenter integration app to Jira SD original JIT user provision since the Okta app is going to be deprecated. The limitation with JIT user provisioning is that the group syncing. The group names needs to be unified to start with jira-servicedesk-***, but in the past we have short names like Infrastructure or Service Desk in Jira SD internally, the group name changing will cause the Assignee group name changed to jira-servicedesk-** too, is there any way that we can have the aliases and show more readable name?
Hi @lanceli_suse,
If you want to replace the “jira-servicedesk-**” into a shorter name, there are geerally two options depending on the usage.
If you want to display these “Assignee groups” as members in the report, you could create calculated members with “cropped” names and use these aliases in the report.
These calculated members might directly reference the core members.
If you want to visually represent the user groups as the properties (details) of the specific user members, you could process the values and replace the long names with the short ones when returning values.
The expression might be as follows.
Replace(
-- source value to process
[Measures].[Assignee groups],
-- string to be replaced
"jira-servicedesk-",
-- replace with blank
""
)
And the outcome might look as follows.
Regards,
Oskars /support@eazyBI.com

