{
try
{
Umsatz u = getUmsatz();
HibiscusAddress e = (HibiscusAddress) Settings.getDBService().createObject(HibiscusAddress.class,null);
Addressbook ab = (Addressbook) Application.getServiceFactory().lookup(HBCI.class,"addressbook");
e.setBlz(u.getGegenkontoBLZ());
e.setKontonummer(u.getGegenkontoNummer());
e.setName(u.getGegenkontoName());
return ab.contains(e);
}
catch (RemoteException re)
{
throw re;
}