SCOM_DB Custom views for reporting

Hi Team,

We have custom view(Custom_LinuxServer) in our SCOM Datawarehouse DB. which list all the linux servers except RHEL 8 servers. can you help me how to include RHEL 8 servers.

View parameter as below

///////////////////////////////////////////////////////////////////////////////////////////////////

USE [OperationsManagerDW]
GO

UPDATE [dbo].[Custom_LinuxServer]
SET [ManagedEntityRowId] = <ManagedEntityRowId, int,>
,[DisplayName] = <DisplayName, nvarchar(max),>
WHERE <Search Conditions,>
GO