This is a new feature for SCOM 1807 under administration.

We need to make sure that 1807 has been applied properly in SCOM. We know that 1807 is just an UR update for 1801, so we need to follow the same procedure for UR update. You may refer the below article for more details.

 

https://support.microsoft.com/en-us/help/4133779/system-center-operations-manager-version-1807

 

There is a discovery called “Microsoft.SystemCenter.OM.Products.Discovery” and targeted to “SCLibrary!Microsoft.SystemCenter.HealthService” which is running every 86400 seconds to discover all the OM products available in SCOM.
 

The discovery executes the PowerShell script called SCOMInstalledProducts to get the information and it will add the values into the property Bag.

Please make sure that SCOM SQL server should have SCOM agent installed and we are not using any custom port for the Database else it will fail.
 

For Database:
 

/****** Script for SelectTopNRows command from SSMS  ******/
SELECT TOP (1000) [BaseManagedEntityId]
     ,[DisplayName]
     ,[AssetStatus_B6E7674B_684A_040D_30B8_D1B42CCB3BC6]
     ,[ComputerName_87BEB26F_C002_9A05_63DB_9B2DCBBEE16B]
     ,[DatabaseName_903CBA20_8ED0_46E7_9FC8_7E0478378FB9]
     ,[InstanceName_9E2B36B4_1499_E5A4_1646_B7321B58FEB7]
     ,[Notes_5CFC0E2A_AB82_5830_D4BB_0596CBED1984]
     ,[ObjectStatus_4AE3E5FE_BC03_1336_0A45_80BF58DEE57B]
     ,[ProductDisplayName_C49DA63D_43EB_9C55_4EB5_EAA599CE2421]
     ,[Version_EA2D7AC6_309F_E0DB_85A8_5AB95B072C41]
     ,[PrincipalName]
 FROM [OperationsManager1801].[dbo].[MTV_Microsoft$SystemCenter$Installed$Database]
 

For All the Agent and MS products:
 

/****** Script for SelectTopNRows command from SSMS  ******/
SELECT TOP (1000) [BaseManagedEntityId]
     ,[DisplayName]
     ,[AssetStatus_B6E7674B_684A_040D_30B8_D1B42CCB3BC6]
     ,[ComputerName_3F7BB403_5CBF_151A_434C_8C86820A93AE]
     ,[Domain_709E49C4_8B5B_DC23_BE07_33A7725145C4]
    ,[InstallDate_930A41AF_B3BD_0349_9343_7C5A9CFBD873]
     ,[KBNumber_4A01217C_0DF9_26FF_F61A_709E7ACD7DCF]
     ,[Notes_5CFC0E2A_AB82_5830_D4BB_0596CBED1984]
     ,[ObjectStatus_4AE3E5FE_BC03_1336_0A45_80BF58DEE57B]
     ,[PatchInstalled_39748D50_2140_6EF1_9B95_460F96AA1D65]
     ,[ProductDisplayName_B29D2312_FA16_2CE0_C7F3_E1A1DE7E3237]
     ,[Version_2A6C94F4_810F_6E85_9CED_D3EC3F33685B]
     ,[PrincipalName]
 FROM [OperationsManager1801].[dbo].[MTV_Microsoft$SystemCenter$Installed$OMProducts]
 

 

You may need to restart the SCOM services on MS. If the 1807 patch has been applied for the first time, reboot is a must for the SCOM management servers.