VIAVI TestCenter: How can you tell if a module is still supported in a particular release?
Knowledge Base - FAQ
VIAVI TestCenter: How can you tell if a module is still supported in a particular release?
One way is to check the RCM.db associated with the particular version in question.
• The RCM.db is located in: C:\Program Files\VIAVI Communications\VIAVI TestCenter \VIAVI TestCenter Application\RcmDb
• The below example uses the database program SQLiteSpy
• Use a search string like the one below:
• select * from capability where (key LIKE '%/TestModule/TestModule%')
• If the value of "isThisFWVersionSupported" is TRUE, as we see in this search for a DX2-40G-Q24 module, then that version of FW supports the module.
• If the search turns up empty, then it surely is not supported in that FW version. For example,
• Using the search string,
• select * from capability where (key LIKE '%CM-1G-D12%/TestModule/TestModule%')
• In the 5.11 version of RCM.db, a search from the CM-1G-D12 module turns up empty.
• But in the 5.04 version of RCM.db, we see that the 5.04 FW does support this module.