When you attempt to edit specific groups within the UIM Operator Console (OC), the application displays a blank white screen.
This issue may occur due to corruption in the cm_group database table. Specifically, the criteria field of the database record for the group may be missing the required attributes.
-- WARNING!!!
-- Consult with your DBA before using these commands and do test it first in a UIM Test/DEV/Staging environment. We highly recommend backing up tables before executing any updates or deletes. Lost data is unrecoverable without a backup.
You must perform manual database cleanup to correct the corrupted criteria. This is done by the following steps:
SELECT * FROM CM_GROUP WHERE name = '<GroupNameHere>'
UPDATE CM_GROUP SET criteria=NULL WHERE grp_id=####;
Broadcom assumes no liability for any issues arising from using these commands. Your DBA should evaluate the commands before executing them.