fiogf49gjkf0d You have to update the Entity.
The SLX Boolean fields are actually define as char(1) on the Database.
When you add the field onto the Entity, SalesLogix brings it in as a String.
You need to Edit the Entity and change the Field to a TrueFalse type instead.
The cause of the Error is that, as a String, the Field returns a "T" or "F" to the Control when binding.
If defined properly, it returns "True" or "False", which is what the checkbox is expecting. |