IncludeSucceededOperations: Boolean;
The IncludeSucceededOperations property determines whether successful operations on objects are displayed. The default value of this property is True.
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.IncludeSucceededOperations := False;
Obj.Save;
FilCon.SaveToFile(FilCon.DefaultFileName);
End Sub UserProc;
After executing the example the property of filter condition is changed: do not show successful operations.
See also: