-
Notifications
You must be signed in to change notification settings - Fork 9
GPVDataTab
Andrew Buck edited this page May 1, 2017
·
4 revisions
Each layer in the GPV can have one or more data tabs associated with it. These data tabs show detailed information in the right side data details panel for the highlighted item in the selection data grid.
- DataTabID - The unique identifier for this data tab (not null). This can be the same as the display name. This does not currently appear as a foreign key in other tables -- it is here for consistency and to support future expansion.
- LayerID - The ID of the GPV layer this data tab is connected to (not null). Links to GPVLayer.
- DisplayName - The name of this data tab on the interface (not null).
- ConnectionID - The database connection for the stored procedure. If null, defaults to the configuration database. Links to GPVConnection.
- StoredProc - The name of the stored procedure which provides the data for this data tab (not null).
- SequenceNo - A number specifying the display order of this data tab (not null).
- Active - Specifies whether this data tab should be available for use, 1 for yes and 0 for no. If null, defaults to 0 (no).