Export Metadata (File) menu is not present in System Operations after migration to version 8.3 from 8.2 .
book
Article ID: KB0084774
calendar_today
Updated On:
Products
Versions
TIBCO MDM
-
Not Applicable
-
Description
Description: After Migration of dependent files from 8.2.1 to 8.3.2 Export Metadata(File) is not present in System Operations Symptoms:
Cause:
This has occurred because of the following snippet code is not present in MQ_HOME\config\security\allmenu.xml .
<menuitem class="security" id="exportmenu2">
<displayname>Export Metadata (File)</displayname>
<url>CopyMetaData?&action=export</url>
</menuitem>
</menulist>
This is missing because you have migrated outofbox Allmenu.xml even though custom menus are not present in 8.2.1. Since the following menu is introduced in mdm 8.3.2, it is being over ridden by allmenu.xml from CIM 8.2.1 after migration.
Resolution
Add the following code under <menulist displayname="System Operations" basename="System Operations" class="security" id="sysopmenu">
<menuitem class="security" id="exportmenu2">
<displayname>Export Metadata (File)</displayname>
<url>CopyMetaData?&action=export</url>
</menuitem>
</menulist>
After adding the code it should look like the following.
If "config/security/allmenu.xml=true" is in migrateConfigFolderFiles.prop, then it will replace Allmenu.xml from MDM 8.2.1 file to 8.3.2 during migration. If there are no changes in 8.2.1, then we need to insert "config/security/allmenu.xml=false" and run it.
Issue/Introduction
Export Metadata (File) menu is not present in System Operations after migration to version 8.3 from 8.2 .