
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-08-2018 11:46 AM
Hi there,
is it possible to create a report which only displays user specific software installations of e. g. Mozilla Firefox instead of all installations of Mozilla Firefox?
In the computer view page it's recognizable by the little person icon next to the entry so maybe there is a database field for that ...
Thank you and best regards
Nico
is it possible to create a report which only displays user specific software installations of e. g. Mozilla Firefox instead of all installations of Mozilla Firefox?
In the computer view page it's recognizable by the little person icon next to the entry so maybe there is a database field for that ...
Thank you and best regards
Nico
Labels:
- Labels:
-
Report Center
2 REPLIES 2

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-09-2018 10:36 AM
That data is stored in tblSoftware.CurrentUser. 1 means it is user specific software, 0 means it is not.
So basically just add the following condition to your report:
So basically just add the following condition to your report:
Where tblSoftware.CurrentUser = 1

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-10-2018 09:30 AM
Charles.X wrote:
That data is stored in tblSoftware.CurrentUser. 1 means it is user specific software, 0 means it is not.
So basically just add the following condition to your report:Where tblSoftware.CurrentUser = 1
Thank you very much, worked like a charm!
