IRubricatorFactorStorage.EphemeralFacts

Syntax

EphemeralFacts: Boolean;

Description

The EphemeralFacts property determines whether to save new indicators with attribute of deletion.

Comments

EphemeralFacts can be used to save validation calculation data, if it was calculated for non-existing, but possible indicators.

Available values:

Example

Executing the example requires the FactorStorage object (the IRubricatorFactorStorage type) that saves indicator data. Input parameters of the procedure:

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:

IRubricatorFactorStorage