persistent class %DeepSee.UserLibrary.SharedCalcMember
extends %Persistent, %DeepSee.UserLibrary.UserData
parameter XMLNAME = "sharedCalcMember";
This parameter provides the default XMLNAME for the class. If it is
empty then the class name will be used to construct a default XML name.
The default XMLNAME is used as the top level tag
when exporting objects and the export context
did not provide an XML container name.
property CubeName
as %String(MAXLEN=2000,XMLPROJECTION="attribute");
property Dimension
as %String(MAXLEN=2000,XMLPROJECTION="attribute");
property Expression
as %String(MAXLEN=2000,XMLPROJECTION="attribute");
property Format
as %String(MAXLEN=2000,XMLPROJECTION="attribute");
property FullName
as %String(MAXLEN=2000,XMLPROJECTION="attribute") [ Transient ];
property Name
as %String(MAXLEN=2000,XMLPROJECTION="attribute");
property SolveOrder
as %String(MAXLEN=2000,XMLPROJECTION="attribute");
property UpperCaseDimension
as %String(MAXLEN=2000,XMLPROJECTION="attribute");
property UpperCaseName
as %String(MAXLEN=2000,XMLPROJECTION="attribute");
index (Idx on CubeName,UpperCaseDimension,UpperCaseName) [IdKey];