System Configuration changes
Some Creo Elements/Direct Model Manager features were changed or disabled after the 14.00 release.
You can use the following instructions to revert or re-enable these features.
Enable Subscriptions and Notifications
1. You must have a Web Services Server to enable Subscriptions and Notifications. If you don't have one installed, reconfigure your installation to add one.
2. Configure your e-mail Server.
a. Start Creo Elements/Direct Model Manager and go to the Admin tab.
b. Click Configure E-mail Server.
c. In the Enter E-mail Configuration dialog, configure your E-mail Server. See the Creo Elements/Direct Model Manager help for instructions specific to your version of Creo Elements/Direct Model Manager.
d. Deploy your changes.
3. Go to the Favorites tab. You should now see the My Subscriptions folder. You should also receive notifications via e-mail.
Enable Packets
1. Add
<EnablePackets>true</EnablePackets>
2. Add
<Class extends="BASE_PROJECTPACKET">
<Name catalog="awm_stda" msg_num="263">PROJECTPACKET</Name>
to the <ClassDefs> section of your custom xml file.
Enable Projects
If you enable projects, you must also enable packets.
1. Add
<EnableProjects>true</EnableProjects>
to the <Options> section of your custom xml file.
Configure the default Save Type list
The default order of types in the Save Type list has been changed to
Minor Rev
Major Rev
Overwrite
To revert the order,
1. Add
<Class extends="DMModel, DMReleaseProcess">
<Name catalog="awm_stda" msg_num="258">MODEL_3D
<attribute>
STORE_TYPE
<StoreTypeOrder catalog="model" msg_num="102">Overwrite</StoreTypeOrder>
<StoreTypeOrder catalog="model" msg_num="958">Minor Rev</StoreTypeOrder>
<StoreTypeOrder catalog="model" msg_num="957">Major Rev</StoreTypeOrder>
</Attribute>
</Class>
to the <ClassDefs> section of your custom xml file.
Set the default Load Rule
The default Load Rule has been changed to Highest Revisions
To change the default to As Stored,
1. Copy the <AvailableLoadRules> section from wmconf.xml to your custom xml file. Make sure you don't put it in one of the configuration file sections (such as <Options> or <ClassDefs>).
2. Edit the <AvailableLoadRules> section in your custom xml file and move the <Default/> tag from Highest Revisions to As Stored.
<AvailableLoadRules>
<clear/>
<IsDefaultConfigurableByUser>true</IsDefaultConfigurableByUser>
<LoadRule catalog="model" msg_num="727">As Stored
<Index>1</Index>
<Default/>
</LoadRule>
<LoadRule catalog="model" msg_num="728">Highest Revisions
<Index>2</Index>
</LoadRule>
<LoadRule catalog="model" msg_num="729">Highest Released Revisions
<Index>3</Index>
</LoadRule>
</AvailableLoadRules>
Remove new User preferences
Scan using model files (DDM data support) and Load root item using default load rule were new preferences in Creo Elements/Direct Model Manager 14.50. You can make the preferences unavailable to users (the preference will still appear on the Preferences tab, but the user cannot change the value).
1. Copy the entire Scan using model files (DDM data support) and Load root item using default load rule preference definition from wmconf.xml to your custom xml file.
2. Edit so that <DefaultValue> is false and <Protect> is true.
<Preference catalog="model" msg_num="2640">Scan using model files (DDM data support)
<Key>PB_PUB_BOM_SCANNING</Key>
<Group catalog="model" msg_num="2618">BOM</Group>
<DefaultValue>false</DefaultValue>
<Protect>true</Protect>
</Preference>
<Preference catalog="model" msg_num="2340">Load root item using default load rule
<Key>LOAD_ROOT_USING_LOAD_RULE</Key>
<Group catalog="model" msg_num="36">Load</Group>
<DefaultValue>false</DefaultValue>
<Protect>true</Protect>
</Preference>
Re-enable User preferences
Load containers and Create thumbnails were disabled in Creo Elements/Direct Model Manager 14.50. Depending on the version installed, you may need to re-enable these preferences. To do so,
1. Copy the entire Load containers and Create thumbnails preference definition from wmconf.xml to your custom xml file.
2. Edit so that <DefaultValue> is true.
<Preference catalog="model" msg_num="321">Load containers
<Key>LOAD_CONTAINERS</Key>
<Group catalog="model" msg_num="36">Load</Group>
<DefaultValue>true</DefaultValue>
</Preference>
<Preference catalog="model" msg_num="1339">Create thumbnails
<Key>AUTO_CREATE_THUMBNAILS</Key>
<Group catalog="model" msg_num="392">Save</Group>
<DefaultValue>true</DefaultValue>
</Preference>
Changes in XML default values
Several xml tags have new default values defined in wmconf.xml for CoCreate Model Manager 14.50 and later. To change these tags to their previous default values, copy the tag from wmconf.xml into your custom xml file and edit the value.
<EnableInPacketDMSNames> changed from true to false
<EnforcePacketPolicyForRevisioning> changed from false to true
<IncludeInLayoutManager> changed from false to true
<LibraryModelDuplicateConflictCheck> changed from false to true
<RecentlyUsedInitialMaxSize> changed from 10 to 50
<SaveScaleAsFloat> changed from false to true
<UseFullNameForStateUsernames> changed from false to true
See the Creo Elements/Direct Model Manager Customization Guide for complete information on xml changes.
Was this helpful?