persistent class %DeepSee.UserLibrary.PivotVariable
extends %Persistent, %DeepSee.UserLibrary.UserData
parameter XMLNAME = "pivotVariable";
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 Context
as %String(MAXLEN=2000,XMLPROJECTION="attribute");
property CubeName
as %String(MAXLEN=2000,XMLPROJECTION="attribute");
property DefaultValue
as %String(MAXLEN=2000,XMLPROJECTION="attribute");
property Description
as %String(MAXLEN=2000,XMLPROJECTION="attribute");
property DisplayList
as %String(MAXLEN=2000,XMLPROJECTION="attribute");
property DisplayName
as %String(MAXLEN=2000,XMLPROJECTION="attribute");
property FullName
as %String(MAXLEN=2000,XMLPROJECTION="attribute") [ Transient ];
property Name
as %String(MAXLEN=2000,XMLPROJECTION="attribute");
property SourceName
as %String(MAXLEN=2000,XMLPROJECTION="attribute");
property SourceType
as %String(MAXLEN=2000,XMLPROJECTION="attribute");
property Type
as %String(MAXLEN=2000,XMLPROJECTION="attribute");
property UpperCaseName
as %String(MAXLEN=2000,XMLPROJECTION="attribute");
property ValueList
as %String(MAXLEN=2000,XMLPROJECTION="attribute");
index (Idx on CubeName,UpperCaseName) [IdKey];