assertTransactionOperation();
javax.transaction.Transaction trans =
_runtime.getTransactionManager().getTransaction();
if (trans == null)
throw new InvalidStateException(_loc.get("null-trans"));
// this commit on the transaction will cause our
// beforeCompletion method to be invoked
trans.commit();
} catch (OpenJPAException ke) {