*/
public String getName() throws ApplicationException
{
try
{
SepaDauerauftrag dauer = (SepaDauerauftrag) this.getContext(CTX_ENTITY);
Konto k = dauer.getKonto();
return i18n.tr("{0}: ({1}) {2} {3} an {4}, Turnus: {5}",k.getLongName(),dauer.getZweck(),HBCI.DECIMALFORMAT.format(dauer.getBetrag()),k.getWaehrung(),dauer.getGegenkontoName(),dauer.getTurnus().getBezeichnung());
}
catch (RemoteException re)
{
Logger.error("unable to determine job name",re);
throw new ApplicationException(i18n.tr("Auftragsbezeichnung nicht ermittelbar: {0}",re.getMessage()));