Hi
I like to filter that report with Custom Properties 'Owner='OwnerXyZ'
ELECT Caption,InterfaceDescription,InterfaceAlias
FROM (
SELECT ND.Caption, NCMI.InterfaceAlias,NCMI.OperStatus,NCMI.InterfaceDescription,NodesCustomProperties.Owner,NCMI.LastChange
FROM NCM_Interfaces NCMI INNER JOIN NCM_NodeProperties NCMNP ON (NCMI.NodeID = NCMNP.NodeID)
INNER JOIN NodesData ND ON (NCMNP.CoreNodeID = ND.NodeID)
INNER JOIN NodesCustomProperties ON (NodesCustomProperties.Owner ='OwnerXyZ')
WHERE (Caption like '%.bbn%' )
AND (InterfaceName like '%Fa%' or InterfaceName like '%Gi%')
and InterfaceAlias!=''
and InterfaceAlias not like '%uncont%'
and InterfaceAlias not like '%-Controlled%'
) T1
GROUP BY Caption, InterfaceDescription,InterfaceAlias,OperStatus,t1.lastchange
ORDER BY LastChange DESC