persistent class EnsLib.EDI.X12.SearchTable
extends %Persistent, Ens.VDoc.SearchTable
parameter DOCCLASS = "EnsLib.EDI.X12.Document";
The class of Document object for which this SearchTable subclass is designed.
parameter EXTENTSIZE = 4000000;
The EXTENTSIZE parameter is used to inform the SQL Query Optimizer
of the approximate number of instances in the extent containing instances of this class.
For example, a class that expects to have about 1,000,000 instances should define:
parameter EXTENTSIZE = 1000000;
property TopParentId
as %Integer;
Adds Batch Document Search Support for SearchTables
Where Search Properties defined for Child Documents can be evaluated and located
in context to the Top Parent Document.
Display List Detail of Child Document Search Table properties in Message Search
index (indexDocId on DocId,PropId,PropValue) [Unique];
Index must be re-declared in each non-Abstract, %Persistent subclass
index (indexTopParentId on TopParentId);
Supports use of Batch Document Search Tables
index (indexValue on PropId,PropValue,DocId) [IdKey,Unique];
Index must be re-declared in each non-Abstract, %Persistent subclass