Configure the Parameter List (Violation Browser-Mitigation) values to hide the N/A value
When mitigating violations with parameterized exclusion , you can hide the value N/A from the Parameter List by executing this script on the IRC database.
IF NOT EXISTS(SELECT 1 FROM
BizRightsSettings WHERE SettingName = 'Hide NA
value from parameter name dropdown during
mitigation of parameterized rule violations')
BEGIN
INSERT INTO BizRightsSettings VALUES
('Hide NA value from parameter name dropdown
during mitigation of parameterized rule
violations','true')
END
ELSE
BEGIN
UPDATE BizRightsSettings SET
SettingValue= 'true' WHERE SettingName =
'Hide NA value from parameter name dropdown
during mitigation of parameterized rule
violations'
END