Provided here is a SQL version of the Asset Intelligence customized catalog software families report.
SQL Query:
Select
CategoryName Name,
Description,
'Type' = Case
When Type = 1 Then 'Validated'
End
From v_LU_Category_Editable
Where Type = 1
Order by CategoryName
No Comments