
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-27-2013 06:40 PM
Looking to copy the Computer Overview report but add the chassis type column to it. been trying to add it but can't figure it out any help here.
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
‎06-27-2013 08:11 PM
Make sure your table selection includes tblSystemEnclosure and TsysChassisTypes.
Linkage:
tblAssets -> tblSystemEnclosure -> TsysChassisTypes
Once you've got that, the description of the chassis is TsysChassisTypes.ChassisName.
Linkage:
tblAssets -> tblSystemEnclosure -> TsysChassisTypes
Inner Join tblSystemEnclosure On tblAssets.AssetID = tblSystemEnclosure.AssetID
Inner Join TsysChassisTypes On TsysChassisTypes.Chassistype = tblSystemEnclosure.ChassisTypes
Once you've got that, the description of the chassis is TsysChassisTypes.ChassisName.
2 REPLIES 2

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-27-2013 08:17 PM
Thank you! see what i did wrong
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-27-2013 08:11 PM
Make sure your table selection includes tblSystemEnclosure and TsysChassisTypes.
Linkage:
tblAssets -> tblSystemEnclosure -> TsysChassisTypes
Once you've got that, the description of the chassis is TsysChassisTypes.ChassisName.
Linkage:
tblAssets -> tblSystemEnclosure -> TsysChassisTypes
Inner Join tblSystemEnclosure On tblAssets.AssetID = tblSystemEnclosure.AssetID
Inner Join TsysChassisTypes On TsysChassisTypes.Chassistype = tblSystemEnclosure.ChassisTypes
Once you've got that, the description of the chassis is TsysChassisTypes.ChassisName.
