Insight Query - where to get User details for Team Area
He
I was creating an insight report for RTC, where i can pull the data for each team area with the list of users, email id and the roles associated to the user for that particular team area.
The team area would be the user selection, i can get the user names for the team area from "Team Role Related Resource" when i try to get resource details from "Team area" table its not working.
what is the mistake am doing ?
Is it possible to get these details in Insight from RTC?
Please let me know if any one knows how to get these details.
Regards,
Praveena
|
2 answers
Hello Praveena,
the tables where the team rolerelation is stored are the following:
You can run a query similar to this against your data warehouse database to see if there is data collected: select R.Name, T.Name, TR.Name from riods.team T, riods.team_role TR, riods.team_role_member_lookup L, riods.resource R where T.team_id = TR.team_id and TR.team_role_id = L.team_role_id and L.resource_id = R.resource_id;Note: The syntax above works for DB2, if you use a different database you might need to adapt the SQL. Best Regards, Francesco Chiossi |
Your answer
Dashboards and work items are no longer publicly available, so some links may be invalid. We now provide similar information through other means. Learn more here.