CA Automic Workload Automation - Automation Engine
Issue/Introduction
When a customer exports an RA FTP job object from V10 and imports it into V12, the following error message is observed when attempting to access the FTP tab:
Cannot convert FALSE to java.lang.Boolean com.vaadin.data.util.converter.Converter$ConversionException
Environment
Any V12 environment.
Cause
The root cause is that some values are stored as FALSE (ie: UPPERCASE) in the database/xml, instead of in lowercase.
There may have been direct database updates which resulted in changes to the database (apart from direct manipulation via the FTP panels).
To check how many of them are stored, these may be corrected in the affected database by hand. The following query will show how many objects are currently affected:
select OH.OH_Name, OCV.OCV_VName, OCV.OCV_Value from OH,OCV where OCV_OH_Idnr = OH.OH_IDNR and OH.OH_Deleteflag = 0 and OCV.OCV_Value = 'FALSE'