Quote:
Caused by: java.sql.BatchUpdateException: ORA-01400: cannot insert NULL into ("CA_ADMIN"."SESSION_INSTANCE"."FORMAT_NAME")
This usually indicates you are trying to save a 'null' value in a NOT NULL column. Indeed that column is NOT NULL in the table definition. My theory is that since you have not included SESSION_INSTANCE.FORMAT_NAME in your mapping of the CentreSessionDetailsBO object, Hibernate does not know how to update that field. Instead Hibernate will try to set FORMAT_NAME to 'null', and the database won't allow that and thus the exception.
I would add the FORMAT_NAME to your CentreSessionDetailsBO mapping, make sure your updates do not set it to null, and see if the problem is gone.
Frank