set the hyperthreading reporting objects in the SMS_DEF.mof to report on this
select distinct v_R_System.Netbios_Name0 AS "Server Name",
v_GS_SERVICE.DisplayName0 AS "Unicenter Service",
v_GS_Computer_system.model0 AS "Model",
count(distinct v_GS_processor.ProcessorId0) AS "Number of Processors",
v_GS_Processor.IsHyperthreadEnabled0 AS "Is Hyperthreading Enabled?",
v_gs_processor.maxclockspeed0 AS "Processor (GHz)",
v_gs_Operating_system.Caption0 AS "Operating System",
v_GS_Computer_system.manufacturer0 AS "Manufacturer"
from v_R_System
inner join v_GS_SERVICE on (v_GS_SERVICE.ResourceID = v_R_System.ResourceID)
inner join v_GS_Operating_system on (v_gs_operating_system.resourceid = v_R_system.resourceid)
inner join v_gs_computer_system on (v_gs_computer_system.resourceid = v_r_system.resourceid)
inner join v_GS_x86_PC_memory on (v_GS_x86_PC_memory.resourceid = v_r_system.resourceid)
inner join v_GS_processor on (v_GS_processor.resourceid = v_r_system.resourceid)
where v_R_System.Operating_System_Name_and0 like "%Server%"
and v_GS_Service.DisplayName0 LIKE "%unicenter%"
or v_GS_Service.DisplayName0 LIKE "%workload agent%"
group by v_R_System.Netbios_Name0,
v_GS_SERVICE.DisplayName0,
v_GS_Computer_system.model0,
v_GS_Processor.IsHyperthreadEnabled0,
v_gs_processor.maxclockspeed0,
v_gs_Operating_system.Caption0,
v_GS_Computer_system.manufacturer0
Order by v_r_system.netbios_name0
------------------------------------------------------------------------