persistent class %IPM.ExtensionBase.UniversalSettings
extends %IPM.General.AbstractSettings
parameter DEFAULTGLOBAL = "^IPM.ExtensionBase.UniSettings";
If a persistent class uses %Storage.Persistent then the DEFAULTGLOBAL parameter is used as the
default global root for the values of the storage keywords COUNTERLOCATION, DATALOCATION, IDLOCATION,
INDEXLOCATION and STREAMLOCATION in the active storage definition. DEFAULTGLOBAL is only used
to generate location keyword values that are not already defined. The location value is constructed by adding
a location type to the end of DEFAULTGLOBAL. For example, if DEFAULTGLOBAL = "^GL.Account"
the compiler will generate DATALOCATION = ^GL.AccountD.
If USEEXTENTSET is true, then DEFAULTGLOBAL is used as the default extent location.
The location types are:
Location | Type |
---|
COUNTERLOCATION | C |
DATALOCATION | D |
IDLOCATION | D |
INDEXLOCATION | I |
STREAMLOCATION | S |
parameter DESCRIPTION = "Universal source control options";
A string to show in the grouping of settings for this class.
parameter MANAGEDEXTENT = 0;
Other classes may reasonably also map to this global, so don't complain about it.
property Key
as %String [ InitialExpression = $classname(),ReadOnly ];
An inherited IDKey index on this property means that the default value is
used as a subscript under in the storage definition.
property MappedSourceControl
as %Boolean [ InitialExpression = ($Get(^%SYS("SourceControlClass")) = "%IPM.ExtensionBase.Composite") ];
If enabled, source control behavior (including menu item enable/disable) follows mapped resources.
That is, if a class is mapped from the default routine database of another namespace that has source control enabled,
the source control behavior from that namespace will be used rather than that of the current namespace.