This discussion has been locked. The information referenced herein may be inaccurate due to age, software updates, or external references.
You can no longer post new replies to this discussion. If you have a similar question you can start a new discussion in this forum.

Group member with customs vaules report

Hi,

it's my first post here and I'm looking for help emoticons_happy.png.

I tring to create a report which display information for each group in common order:

-IP Address

-Hostname

-Vendor

-Machin Type

-SNMP version

I have tried with Report Writer and Group and Group Members Report to edit this one but there is no option to do it.

Any suggestions how to make this report?

OK, I got solution: SWQL script for Report
SELECT n.Caption AS Hostname, n.IPAddress, n.Vendor , n.MachineType, n.SNMPVersion AS SNMP, g.Name AS Grupa FROM Orion.Nodes n join Orion.ContainerMembers c on c.MemberPrimaryID = n.NodeID and c.MemberEntityType = 'Orion.Nodes'  join Orion.Groups g on c.ContainerID = g.ContainerID ORDER BY HOSTNAME ASC