Client Management Suite

 View Only

Activity Center is Missing the "Identification" Section for Some Computer Resources 

Oct 02, 2014 02:35 PM

 In some cases, the Activity Center in the NS/SMP console does not show an "Identification" section for computer resources. 

 

The reason for this is that the Identification section is currently dependent on the presence of hardware inventory data. Once hardware inventory runs on a computer resource and the correct data classes are populated, the Identification section will appear. The specifics are: 

 

  1. Activity Center will call the "spGetFullPageIdentificationSection". This procedure queries the vHWComputerSystem view, as shown here: 

 

--CREATE PROCEDURE [dbo].[spGetFullPageIdentificationSection]

select * --top 1 a.[Identifying Number], a.[Device ID] 

      from vHWComputerSystem a 

      where  a._ResourceGuid = @resourceGuid

 

2. The vHWComputerSystem view consists of data from the following query, as shown here:

 

--CREATE VIEW [dbo].[vHWComputerSystem]

SELECT

Inv_HW_Logical_Device.[_ResourceGuid] ,

            Inv_HW_Computer_System.[Identifying Number],

            Inv_HW_Computer_System.[Number Of Processors],

            Inv_HW_Computer_System.[Total Physical Memory (Bytes)],

            Inv_HW_Logical_Device.[Description],

            Inv_HW_Logical_Device.[Device Class],

            Inv_HW_Logical_Device.[Manufacturer],

            Inv_HW_Logical_Device.[Model],

            Inv_HW_Logical_Device.[Device ID]

    FROM Inv_HW_Logical_Device INNER JOIN Inv_HW_Computer_System ON Inv_HW_Logical_Device.[Device ID] = Inv_HW_Computer_System.[Device ID]

            AND Inv_HW_Logical_Device.[_ResourceGuid] = Inv_HW_Computer_System.[_ResourceGuid]

 

Note that both tables, Inv_HW_Computer_System and Inv_HW_Logical_Device, are populated only by hardware inventory. Once these are populated correctly, the Identification section will appear in the Activity Center for the given computer resource. 

 

Statistics
0 Favorited
0 Views
0 Files
0 Shares
0 Downloads

Tags and Keywords

Related Entries and Links

No Related Resource entered.