Skip to main content
Skip table of contents

Global Configuration Settings - cfg

The following commands set global properties:

Concurrent User Limits

DescriptionSet the maximum number of users from a particular group that can be logged in to SuperWEB2 at any one time.
Usage

View the current configuration:

CODE
cfg global superweb2.concurrentUserLimits

Update the configuration:

CODE
cfg global superweb2.concurrentUserLimits[<index>].limit set <limit>
cfg global superweb2.concurrentUserLimits[<index>].groupId set <group>

Clear the configuration:

CODE
cfg global superweb2.concurrentUserLimits remove
Examples

The following commands allow a maximum of 50 users from the Guests group to be logged in at any one time:

CODE
cfg global superweb2.concurrentUserLimits[0].limit set "50"
cfg global superweb2.concurrentUserLimits[0].groupId set "Guests"
More InformationConfigure Concurrent User Limits

Field Exclusion Rules

DescriptionDefine a global field exclusion rule.
Usage

View the current configuration:

CODE
cfg global superweb2.rules.fieldExclusion

Update the configuration:

CODE
cfg global superweb2.rules.fieldExclusion[<index>].limit set <limit>
cfg global superweb2.rules.fieldExclusion[<index>].fields set <list_of_fields>

Clear the configuration:

CODE
cfg global superweb2.rules.fieldExclusion remove

Example

The following commands specify that only one of Age, Area and Occupation can be added to a table at any one time:

CODE
cfg global superweb2.rules.fieldExclusion[0].limit set 1
cfg global superweb2.rules.fieldExclusion[0].fields set [ "Age", "Area", "Occupation" ]
More InformationField Exclusion Rules

Large Table Mode

DescriptionOverride global large table mode settings.
Usage

View the current configuration:

CODE
cfg global superweb2.largeTableMode

Update the configuration:

CODE
cfg global superweb2.largeTableMode[<index>].thresholdTotal set <limit>
cfg global superweb2.largeTableMode[<index>].thresholdRendered set <limit>
cfg global superweb2.largeTableMode[<index>].thresholdRow set <limit>
cfg global superweb2.largeTableMode[<index>].thresholdColumn set <limit>
cfg global superweb2.largeTableMode[<index>].excludeGroups set <list_of_groups>
cfg global superweb2.largeTableMode[<index>].includeGroups set <list_of_groups>

Clear the configuration:

CODE
cfg global superweb2.largeTableMode remove
Examples

The following examples set the row threshold to 500 for all users, and set the total threshold to 10,000 for all users except those in the administrators and internalusers groups.

CODE
cfg global superweb2.largeTableMode[0].thresholdTotal set 10000
cfg global superweb2.largeTableMode[0].excludeGroups set ["administrators","internalusers"]
 
cfg global superweb2.largeTableMode[1].thresholdRow set 500
More InformationConfigure Settings for Large Tables

Maximum Selected Nodes

Description

The maximum number of items that can be selected in the field tree in the customise table panel at any one time. This setting applies to both classifications and measures/summation options.

The default setting for this property is -1, which means there is no limit.

Usage

View the current configuration:

CODE
cfg global superweb2.schemaMaximumSelections

Update the configuration:

CODE
cfg global superweb2.schemaMaximumSelections set <value>

Reset the configuration to the default:

CODE
cfg global superweb2.schemaMaximumSelections remove
Example

The following command restricts the maximum number of selected nodes to 3:

CODE
cfg global superweb2.schemaMaximumSelections set "3"

This setting only applies when adding items to a table using the "Add to: Row/Column/Wafer" buttons:

It does not apply when adding items to a table using the click and drag method:

Query Limits

Description

Set limits on the size of tables that users can create. You can restrict the number of fields, rows, columns, wafers, or total cells that users can add to a table.

Usage

View the current configuration:

CODE
cfg global superweb2.rules.defaultQueryLimits
cfg global superweb2.rules.groupQueryLimits

Update the default query limit configuration:

CODE
cfg global superweb2.rules.defaultQueryLimits.cells set <cells>
cfg global superweb2.rules.defaultQueryLimits.wafers set <wafers>
cfg global superweb2.rules.defaultQueryLimits.columns set <columns>
cfg global superweb2.rules.defaultQueryLimits.rows set <rows>
cfg global superweb2.rules.defaultQueryLimits.fields set <fields>

Update the group query limit configuration:

CODE
cfg global superweb2.rules.groupQueryLimits[<index>].groupId set <group_id>
cfg global superweb2.rules.groupQueryLimits[<index>].limits.fields set <fields>
cfg global superweb2.rules.groupQueryLimits[<index>].limits.cells set <cells>
cfg global superweb2.rules.groupQueryLimits[<index>].limits.rows set <rows>
cfg global superweb2.rules.groupQueryLimits[<index>].limits.columns set <columns>
cfg global superweb2.rules.groupQueryLimits[<index>].limits.wafers set <wafers>

Clear the configuration:

CODE
cfg global superweb2.rules.groupQueryLimits remove
Examples
CODE
cfg global superweb2.rules.groupQueryLimits[0].groupId set "Guests"
cfg global superweb2.rules.groupQueryLimits[0].limits.fields set 5
cfg global superweb2.rules.groupQueryLimits[0].limits.cells set 50
cfg global superweb2.rules.groupQueryLimits[0].limits.rows set 10
cfg global superweb2.rules.groupQueryLimits[0].limits.columns set 10
cfg global superweb2.rules.groupQueryLimits[0].limits.wafers set 1
More InformationConfigure User Query Limits

Saved Table Limits

DescriptionSet limits on the number of tables that users can save.
Usage

View the current configuration:

CODE
cfg global superweb2.saveTableLimits

Update the configuration:

CODE
cfg global superweb2.saveTableLimits[<index>].groupId set <group_id>
cfg global superweb2.saveTableLimits[<index>].limit set <limit>

Clear the configuration:

CODE
cfg global superweb2.saveTableLimits remove
Examples
CODE
cfg global superweb2.saveTableLimits[0].groupId set "administrators"
cfg global superweb2.saveTableLimits[0].limit set 500
cfg global superweb2.saveTableLimits[1].groupId set "users"
cfg global superweb2.saveTableLimits[1].limit set 500
More InformationSaved Table Limits

Value Set Drop-Down Labels

DescriptionSet the drop-down label text for this value set.
Usage

View the current configuration:

CODE
cfg global superweb2.valueSetLabels
cfg global superweb2.valueSetLabels.<valueset_id>

Update the configuration:

CODE
cfg global superweb2.valueSetLabels.<valueset_id> set <label_text>
cfg global superweb2.valueSetLabels.<valueset_id> remove

Clear the configuration. You can either clear the labels for individual value sets or clear all the value set labels:

CODE
cfg global superweb2.valueSetLabels.<valueset_id> remove
cfg global superweb2.valueSetLabels remove
Examples

The following command sets the label for the valuseset C_Age:

CODE
cfg global superweb2.valueSetLabels.C_Age set "Age"

The following command removes the drop-down label text defined for C_Age. SuperWEB2 will display the label that was defined in SuperCHANNEL when the SXV4 was created.

CODE
cfg global superweb2.valueSetLabels.C_Age remove
More InformationConfigure Field Drop-down Labels
JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.