The RSCM configuration files follow the general WDIR policy for PADS Designer support files. You can maintain a corporate set of configuration files as a template for your users. Local copies of the configuration files overwrite the values in the corporate copy.
You can lock configuration file parameters so the local copy does not overwrite the corporate copy, and you can group configuration file parameters according to users, machines on your network, and operating systems. The general WDIR policy is described in the Search Path Specification (WDIR) topic.
This example shows how to use multiple corporate WDIR directories to manage configuration file parameters.
The WDIR environment variable is set as follows:
WDIR=c:\WDIR;\\server\corp_WDIR_1;\\server\corp_WDIR_2;\\server\corp_WDIR_3;c:\MentorGraphics\7.9EE\SDD_HOME\standard
The non-default contents of the four Server.cfg file are shown below in the order that RSCM applies the settings (it is reversed from the environment variable assignment):
\\server\corp_WDIR_3\iCDB\Server\Server.cfg contains the following parameters:
[Logging]
Level = 2
[Network]
PortRange* = 10500,10600
\\server\corp_WDIR_2\iCDB\Server\Server.cfg contains the following parameters:
[Network]
PortRange = 10000,10100
[System]
AutoBackupSupport = no
\\server\corp_WDIR_1\iCDB\Server\Server.cfg contains the following parameters:
[Logging]
Level = 5
c:\WDIR\iCDB\Server\Server.cfg contains the following parameters:
[System]
AutoBackupSupport = yes
RSCM applies configuration settings from all locations in the following order, overwriting any existing values:
\\server\corp_WDIR_3
\\server\corp_WDIR_2
\\server\corp_WDIR_1
c:\WDIR
So the latest set value wins. In other words, except for locked values, entries in local WDIR are the most important, and entries in corp_WDIR_3 are least important.
In this case the effective settings are:
[Logging]
Level = 5 ; (Set to 2 in corp_WDIR_3, but overwritten in corp_WDIR_1)
[Network]
PortRange* = 10500,10600 ; (set and LOCKED (*) in corp_WDIR_3, so the different value set in corp_WDIR_2 is discarded)
[System]
AutoBackupSupport = yes ; (set to "no" in corp_WDIR_2, but overwritten with "yes" in local WDIR)