0 List of Persons by Connection Status 1 Dillan Cagnetta posted 8 Years Ago Hi How does one access the connection status of a person Id like to make a report that lists all the people with their connection status Thanks so much
Dillan Cagnetta 8 years ago Hi David, im not sure how Person is connected to their status.Id like to generate a report probably using Dynamic Data or Dynamic Report blocks.so that would be UI and sql i guessthanks
David Leigh 8 years ago If SQL is what you are looking for, try this:SELECT p.Id, p.NickName, p.LastName, dv.[Value] AS 'Connection Status'FROM [Person] pINNER JOIN [DefinedValue] dv ON dv.Id = p.ConnectionStatusValueId