Hello,
does anybody know in which tables of the JIRA Database the information about Teams in Tempo is stored and how they are linked with JIRA Users? I searched a while, but I can only find die Teams definied for our Jira projects. In our case the tempo teams are not even the same as project teams.
Best
Marco Altpeter
(Employee of CompuGroup Medical)
Hello,
Here if it can be usefull to you, I did a sql that pull out the tempo group vs jira group and show the username (from tempo)
SELECT child_name,t.NAME as tempogroup,m.member_key AS jiragroup FROM jira62.AO_AEFED0_TEAM t JOIN jira62.AO_AEFED0_TEAM_MEMBER m ON m.member_type = 'group' AND (m.role_type = 'member' or m.role_type = 'lead') JOIN jira62.AO_AEFED0_TEAM_TO_MEMBER tm ON t.id = tm.team_id AND m.ID = tm.team_member_id JOIN jira62.cwd_membership cw ON cw.parent_name = m.member_key UNION SELECT member_key,t.NAME as tempogroup,null FROM jira62.AO_AEFED0_TEAM t JOIN jira62.AO_AEFED0_TEAM_MEMBER m ON m.member_type = 'user' JOIN jira62.AO_AEFED0_TEAM_TO_MEMBER tm ON t.id = tm.team_id AND m.ID = tm.team_member_id
After this you could only add the table cwd_user and it to tempo username.
How do I identify only current membership? For example; Homer Simpson belonged to TeamA last month, but has been moved out of TeamA and into TeamB this month. I'm not seeing any active flag or start or end date on the team member table.
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.