persistent class %IPM.General.Settings
extends %IPM.General.AbstractSettings
This class contains general package manager settings that are configurable via the Package Manager > Configuration
section of the Studio extension.
parameter DEFAULTGLOBAL = "^IPM.General.Settings";
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 = "General Package Manager Settings";
A string to show in the grouping of settings for this class
parameter MANAGEDEXTENT = 0;
The MANAGEDEXTENT parameter can be set to 0 (zero) to cause the Extent Manager
to ignore this class. If set to 1 then the Extent Manager will register globals used by
the class and detect collisions. Unmanaged extents (MANAGEDEXTENT = 0) are not checked.
Currently, only classes using default storage (%Storage.Persistent) can be managed.
property Key
as %String [ InitialExpression = "PackageManager",ReadOnly ];
property SuppressCompilation
as %Boolean [ InitialExpression = 1 ];
Whether to suppress compilation upon clicking the 'Compile' icon.
When compilation is suppressed, clicking the icon will save the file
rather than compile it.