When adding fields with Node caption, ip address along with interface name for the broadcast details Report doesn't show node name & ip address.
Took some reference & made this custom sql query to give the same report. But not sure why web report is doing such fuss.
Did anyone faced this issue?
SELECT
Nodes.caption AS Nodes,Nodes.ip_address,I.caption,
CustomPollerAssignment_CPA.assignmentname,CustomPollerStatus_CPS.datetime,CustomPollerStatus_CPS.Status AS Status
FROM
(Nodes INNER JOIN CustomPollerAssignment CustomPollerAssignment_CPA ON
(Nodes.NodeID = CustomPollerAssignment_CPA.NodeID))
INNER JOIN CustomPollerStatus CustomPollerStatus_CPS ON
(CustomPollerAssignment_CPA.CustomPollerAssignmentID =
CustomPollerStatus_CPS.CustomPollerAssignmentID)
INNER JOIN INTERFACES I ON (CustomPollerAssignment_CPA.interfaceid=I.interfaceid)
WHERE(
(CustomPollerAssignment_CPA.assignmentname like '%broadcast%'))