
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-06-2015 06:13 PM
I was able to get as far as adding the tblAssetGroups table and selecting the AssetGroup. But it shows me dynamic groups and the default group.
My question is how do I only show my custom groups? Minus the dynamic groups and the default group?
My question is how do I only show my custom groups? Minus the dynamic groups and the default group?
Solved! Go to Solution.
Labels:
- Labels:
-
Report Center
1 ACCEPTED SOLUTION

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-07-2015 01:30 PM
You need to add table tblAssetGroupLink as well which stores the relations between asset groups and assets. It will automatically be joined to tblAssets and tblAssetGroups. If you want to exclude the default group, look for field tblAssetGroups.AssetGroup in the middle of the report editor window and under column Criteria fill in
<> 'default group'
3 REPLIES 3

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-10-2015 01:43 PM
It is technically possible, but we recommend manually editing each report as otherwise you might get unexpected results. You can simply change the SQL code under the WHERE clause for all reports which use table tblAssetGroups:
Where tblAssetCustom.State = 1 And tblAssetGroups.AssetGroup <> 'default group'

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-07-2015 01:30 PM
You need to add table tblAssetGroupLink as well which stores the relations between asset groups and assets. It will automatically be joined to tblAssets and tblAssetGroups. If you want to exclude the default group, look for field tblAssetGroups.AssetGroup in the middle of the report editor window and under column Criteria fill in
<> 'default group'

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-07-2015 03:42 PM
Daniel.B wrote:
You need to add table tblAssetGroupLink as well which stores the relations between asset groups and assets. It will automatically be joined to tblAssets and tblAssetGroups. If you want to exclude the default group, look for field tblAssetGroups.AssetGroup in the middle of the report editor window and under column Criteria fill in
<> 'default group'
Worked like a charm thanks! Is there a fast easy way to make this modification to every report? Or do I have to do each one manually?
