IncludeFailedOperations: Boolean;
The IncludeFailedOperations property determines whether failed operations on objects are displayed. The property is set to True by default.
Executing the example requires an access protocol filter with the FILTER identifier.
Add a link to the Metabase system assembly.
Sub UserProc;
Var
FilCon: IAuditFiltersContainer;
Objs: IAuditFilterObjects;
Obj: IAuditFilterObject;
Con: IAuditFilterCondition;
Fil: IAuditFilter;
Begin
FilCon := New AuditFiltersContainer.Create;
FilCon.Load;
Objs := FilCon.Filters;
Obj := Objs.FindById("FILTER").Edit;
Fil := Obj.Filter;
Con := Fil.Item(0);
Con.IncludeFailedOperations := False;
Obj.Save;
FilCon.SaveToFile(FilCon.DefaultFileName);
End Sub UserProc;
After executing the example the property of filter condition is changed: do not show failed operations.
See also: