EphemeralFacts: Boolean;
The EphemeralFacts property determines whether to save new indicators with attribute of deletion.
EphemeralFacts can be used to save validation calculation data, if it was calculated for non-existing, but possible indicators.
Available values:
True. New indicators are created with attribute of deletion. One should specify value of the IRubricatorFactorStorage.CurrentRevision property.
False. Default value. New indicators are created without attribute of deletion.
Executing the example requires the FactorStorage object (the IRubricatorFactorStorage type) that saves indicator data. Input parameters of the procedure:
Mat. Matrix with validation calculation results.
Rev. Revision, on which data must be saved.
Add links to the Cubes and Matrix system assemblies.
Sub UserProc(Mat: IMatrix; Rev: IRubricatorRevision);
Var
FactorStorage: IRubricatorFactorStorage;
Storage: ICubeInstanceStorage;
Begin
FactorStorage.CurrentRevision := Rev;
FactorStorage.FactDataMatrix := Mat;
FactorStorage.ValidationValues := True;
FactorStorage.EphemeralFacts := True;
Storage := FactorStorage.AsCubeStorage;
Storage.SaveMatrix(Mat, 1);
End Sub UserProc;
After executing the example validation calculation data is saved, new indicators are created with attribute of deletion.
See also: