When viewing the Agent Health sections for Plug-ins, the Power Scheme Plug-in shows as not up to date.
The Power Scheme plug-in does not have an 8.0 version. It was not updated so 7.6 is the latest version you can have. The framework is expecting an 8.0 version.
This was reported to Development. It is not planned to be fixed at this time, but there is a solution / work-around.
Run the following query against the Database:
SQL query below should fix warning on AgentHealth page (change DB name if you have a custom one).
USE [Symantec_CMDB]
GO
INSERT INTO [dbo].[SmpVersions]
([ProductGuid]
,[PluginGuid]
,[Type]
,[Version]
,[Major]
,[Minor]
,[Build]
,[Revision])
VALUES
('5C69BBEE-6D1E-4E6F-AAE7-90303EF8E23C'
,'07A6BEAA-39DF-4987-BDF1-C7D7AA505317'
,0
,'7.6.1395.0'
,7
,6
,1395
,-1)
GO