persistent class %DeepSee.IDList
extends %Persistent
This table is used to hold lists of IDs when a DeepSee query needs to restrict
the member of a given dimension.
property cubeName
as %String(MAXLEN=255);
Name of the cube that populated this record.
property factNo
as %Integer;
Fact number of the dimension.
property memberId
as %Integer;
Id in the member table.
property queryKey
as %String(MAXLEN=255);
Key for the query that populated this record.
index (ID on cubeName,queryKey,factNo,memberId) [IdKey];