Connection conn = Transaction.begin(DshipmentPeer.DATABASE_NAME);
boolean success = false;
try {
entry.save(conn);
entry.setDshipmentCode(getRowCode("SH", entry.getDshipmentId()));
entry.save(conn);
Transaction.commit(conn);
success = true;
} finally {
if (!success) Transaction.safeRollback(conn);