billybarty
Technical User
This is the prompt I have added to a report that lists specific programs in add/remove
Name: CollID
Prompt Text: Collection ID
begin
if (@__filterwildcard = '')
select CollectionID, Name from v_Collection order by Name
else
select CollectionID, Name from v_Collection
WHERE CollectionID like @__filterwildcard
order by Name
end
The collection I select only contains our servers on one segment but when the report runs the data it returns is for all systems not just the collection I specify.
An example is that we have Mcafee antivirus on only a few of our servers on that segment but it is installed on all our desktops. If I run the query that has the statement for Mcafee in it and select the collection that only contains our servers in the prompt I get a results page that shows Mcafee installed on 200+ systems, not just the servers in the collection but all systems.
Any help is appreciated
Name: CollID
Prompt Text: Collection ID
begin
if (@__filterwildcard = '')
select CollectionID, Name from v_Collection order by Name
else
select CollectionID, Name from v_Collection
WHERE CollectionID like @__filterwildcard
order by Name
end
The collection I select only contains our servers on one segment but when the report runs the data it returns is for all systems not just the collection I specify.
An example is that we have Mcafee antivirus on only a few of our servers on that segment but it is installed on all our desktops. If I run the query that has the statement for Mcafee in it and select the collection that only contains our servers in the prompt I get a results page that shows Mcafee installed on 200+ systems, not just the servers in the collection but all systems.
Any help is appreciated