I'm experiencing a problem with an Oracle foreign key constraint due to an eb.remove() being called. Our entity beans are set to the Weblogic default of delay-updates-until-end-of-tx true. Even though I've updated the related entity bean and called setData() prior to the delete call, the update doesn't take place until commit(I'm inside of a transaction). The eb.remove() however seems to be happening as soon as it's called causing Oracle to throw a SQLException because it hasn't been notified of the update. I've searched but have not found any form of property that delays an eb.remove() similar to the delay-updates-until-end-of-tx weblogic property.