Forum Discussion
Turn on logs in Skype for Business Federation
Right, you'd have to dig down deeper into individual calls, or more likely if you had a specific report in mind you'd want to run your own SQL Query against the sessiondetails table joined with the Users table.
Thanks, Anthony,
I still don't find the answer to my question but thank you anyway I will keep searching and once I figure it out I will share my results. BTW session table and Users table doesn't have anything related to federation. so far only activity by authentication type the only one that shows if Federation has been utilized.
Again thank you, Anthony.
- Aug 25, 2017
You're welcome. The users table should include addresses outside of your domain as well, you can filter out your domain, and get a list if I recall. Join that to the table however you'd like.
- Ramy AMERAug 25, 2017Copper Contributor
I will give it a try and will share my results. thanks again
- Ramy AMERAug 29, 2017Copper Contributor
Script to provide Federated users conferencing.
USE LcsCDR DECLARE @StartDate datetime DECLARE @EndDate datetime DECLARE @DayScan datetime SET @StartDate = '2017-04-15T00:00:00' SET @EndDate = '2017-05-15T00:00:00' SET @DayScan = GETDATE()-30 --Gets date from 30 prior to execution of the query SELECT [InviteTime] ,[EndTime] ,LEFT([ConferenceUri], CHARINDEX(';', [ConferenceUri]) - 1) As [Organizer] ,[UserUri] AS [Participants] ,[UserUriType] ,[UserClientCategory] AS [Client Type] ,[IsUserInternal] ,[ConferenceInstance] ,[McuConferenceUriType] ,[ConferenceUri] ,[ConferenceClientCategory] ,[FrontEnd] ,[Pool] ,[MediationServer] ,[Gateway] ,[EdgeServer] FROM [LcsCDR].[dbo].[ConferenceSessionDetailsView] WHERE (InviteTime >= @StartDate --Comment this line out if the DayScan variable in the next line is used --WHERE InviteTime >= @DayScan AND InviteTime <= @EndDate) --Comment this line out if the DayScan variable in the previous line is used AND (UserClientCategory = 'OC' OR UserClientCategory = 'UCWA' OR UserClientCategory = 'OCPhone' OR UserClientCategory = 'iPhoneLync' OR UserClientCategory = 'AndroidLync' OR UserClientCategory = 'iPadLync' OR UserClientCategory = 'NokiaLync'OR UserClientCategory = 'LWA') AND McuConferenceUriType is not NULL AND UserUri NOT LIKE '%@companysipdomain.com' –Change this line and add the domain.com in question. If multiple sip domains, copy this line and paste it on the next line and change the sip domain accordingly AND UserUri NOT LIKE '%anonymous%' ORDER by ConferenceInstance,InviteTime ASC