persistent class %BI.swMapDB
extends %Persistent, %XML.Adaptor
property Description
as %String(MAXLEN=100,TRUNCATE=1);
property FolderRef
as %String(TRUNCATE=1);
property GridHeight
as %Integer;
property GridWidth
as %Integer;
property GroupCol
as %Integer;
property GroupPID
as %Integer;
property GroupRow
as %Integer;
property MapLink
as %String(TRUNCATE=1);
property MapRef
as %String(TRUNCATE=1);
property MapType
as %String(MAXLEN=1,TRUNCATE=1);
property Name
as %String(TRUNCATE=1);
property StartMap
as %Boolean;
property TotalCol
as %Integer;
property TotalRow
as %Integer;
query ListAll(iUser As %String)
SQL Query
:
SELECT ID,Name,Description,FolderRef
FROM %BI.swMapDB
ORDER BY Name
query ListFolder(folder)
SQL Query
:
SELECT ID,Name
FROM %BI.swMapDB
WHERE (FolderRef = :folder)
ORDER BY Name