Enabling subgrouping within the Event Viewer
Subgrouping allows you to display a hierarchical view of a finalized group.
To enable subgrouping within the Event Viewer, you must have
CEASubgroupingEnabled
set with value=1
in the
master.cea_properties file.
If CEASubgroupingEnabled
does not exist in
master.cea_properties, you can add it using the following command:
INSERT INTO master.cea_properties (Name,IntValue) VALUES ('CEASubgroupingEnabled',1);
Otherwise, you can update it using the following command:
UPDATE master.cea_properties SET IntValue = 1 WHERE Name='CEASubgroupingEnabled';
Note: This functionality can also be used without the finalizer. See the Notes section in
Subgrouping project.