[Gelöst] Fehlermeldung: Kontrollziffer ungültig

7. Oktober 2009 10:48

Guten Tag,

Ich habe gerade die Aufgabe bekommen, nach dieser Fehlermeldung zu recherschieren und leider nichts brauchbares gefunden.

Screenshot:
Fehler.jpg


(Angehängt)

Meine Fragen:

1. Was bedeutet diese Fehlermeldung ?
2. Wie behebe ich den Fehler ?

Vielen Dank schonmal !
Du hast keine ausreichende Berechtigung, um die Dateianhänge dieses Beitrags anzusehen.
Zuletzt geändert von Dark Smile am 7. Oktober 2009 11:21, insgesamt 1-mal geändert.

Re: Fehlermeldung: In Daten gelesene Kontrollziffer ungültig

7. Oktober 2009 11:04

Okay hat sich erledigt, Lösung gefunden.

Lösung: http://www.eggheadcafe.com/conversation ... d=32133730
=>

You can run into this issue with Entire Table Cache. We made some
improvement in this area in Dynamics Ax 2009.

You will run into this problem with entire table cached table is used in
highly transactional scenarios. Entire Table Cache should be used only for
static data which are updated rarely. An example would be a list of states.
The entire table cache operates by offloading the entire table's data onto
AOS to provide faster lookups. Whenever the data changes, the entire cache
is flushed and the next read oepration offloads the entire table again. This
is performance intensive and not recommended for transactional tables.

When this error happens, it means that some other process update the data in
the entire table cache while it was being used by your process.

To fix this problem,
1. If it is a high transaction table, do not use entire table cache. Use
Found & Empty instead.
2. If this is not a high transaction table but gets significant
insert/update/delete during one specific process, disable cache in that
process by setting <Table>.disableCache(true)
Zuletzt geändert von Timo Lässer am 7. Oktober 2009 11:07, insgesamt 1-mal geändert.
Grund: Zitat als solches formatiert